#[non_exhaustive]pub struct ScriptProps {
pub children: Element,
pub src: Option<String>,
pub defer: Option<bool>,
pub crossorigin: Option<String>,
pub fetchpriority: Option<String>,
pub integrity: Option<String>,
pub nomodule: Option<bool>,
pub nonce: Option<String>,
pub referrerpolicy: Option<String>,
pub type: Option<String>,
pub additional_attributes: Vec<Attribute>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.children: Element
The contents of the script tag. If present, the children must be a single text node.
src: Option<String>
Scripts are deduplicated by their src attribute
defer: Option<bool>
§crossorigin: Option<String>
§fetchpriority: Option<String>
§integrity: Option<String>
§nomodule: Option<bool>
§nonce: Option<String>
§referrerpolicy: Option<String>
§type: Option<String>
§additional_attributes: Vec<Attribute>
Implementations§
Source§impl ScriptProps
impl ScriptProps
Sourcepub fn builder() -> ScriptPropsBuilder<((), (), (), (), (), (), (), (), (), ())>
pub fn builder() -> ScriptPropsBuilder<((), (), (), (), (), (), (), (), (), ())>
Create a builder for building ScriptProps
.
On the builder, call .children(...)
(optional), .src(...)
(optional), .defer(...)
(optional), .crossorigin(...)
(optional), .fetchpriority(...)
(optional), .integrity(...)
(optional), .nomodule(...)
(optional), .nonce(...)
(optional), .referrerpolicy(...)
(optional), .r#type(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ScriptProps
.
Source§impl ScriptProps
impl ScriptProps
Sourcepub fn attributes(&self) -> Vec<(&'static str, String)>
pub fn attributes(&self) -> Vec<(&'static str, String)>
Get all the attributes for the script tag
pub fn script_contents(&self) -> Result<String, ExtractSingleTextNodeError<'_>>
Trait Implementations§
Source§impl Clone for ScriptProps
impl Clone for ScriptProps
Source§fn clone(&self) -> ScriptProps
fn clone(&self) -> ScriptProps
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for ScriptProps
impl PartialEq for ScriptProps
Source§impl Properties for ScriptPropswhere
Self: Clone,
impl Properties for ScriptPropswhere
Self: Clone,
Source§type Builder = ScriptPropsBuilder<((), (), (), (), (), (), (), (), (), ())>
type Builder = ScriptPropsBuilder<((), (), (), (), (), (), (), (), (), ())>
The type of the builder for this component.
Used to create “in-progress” versions of the props.
Source§fn memoize(&mut self, new: &Self) -> bool
fn memoize(&mut self, new: &Self) -> bool
Make the old props equal to the new props. Return if the props were equal and should be memoized.
Source§fn into_vcomponent<M>(
self,
render_fn: impl ComponentFunction<Self, M>,
) -> VComponentwhere
M: 'static,
fn into_vcomponent<M>(
self,
render_fn: impl ComponentFunction<Self, M>,
) -> VComponentwhere
M: 'static,
Create a component from the props.
impl StructuralPartialEq for ScriptProps
Auto Trait Implementations§
impl !Freeze for ScriptProps
impl !RefUnwindSafe for ScriptProps
impl !Send for ScriptProps
impl !Sync for ScriptProps
impl Unpin for ScriptProps
impl !UnwindSafe for ScriptProps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<Ret> SpawnIfAsync<(), Ret> for Ret
impl<Ret> SpawnIfAsync<(), Ret> for Ret
Source§impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
impl<T, O> SuperFrom<T> for Owhere
O: From<T>,
Source§fn super_from(input: T) -> O
fn super_from(input: T) -> O
Convert from a type to another type.
Source§impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
impl<T, O, M> SuperInto<O, M> for Twhere
O: SuperFrom<T, M>,
Source§fn super_into(self) -> O
fn super_into(self) -> O
Convert from a type to another type.