#[non_exhaustive]pub struct StyleProps {
pub href: Option<String>,
pub media: Option<String>,
pub nonce: Option<String>,
pub title: Option<String>,
pub children: Element,
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.href: Option<String>
Styles are deduplicated by their href attribute
media: Option<String>
§nonce: Option<String>
§title: Option<String>
§children: Element
The contents of the style tag. If present, the children must be a single text node.
additional_attributes: Vec<Attribute>
Implementations§
Source§impl StyleProps
impl StyleProps
Sourcepub fn builder() -> StylePropsBuilder<((), (), (), (), ())>
pub fn builder() -> StylePropsBuilder<((), (), (), (), ())>
Create a builder for building StyleProps
.
On the builder, call .href(...)
(optional), .media(...)
(optional), .nonce(...)
(optional), .title(...)
(optional), .children(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of StyleProps
.
Source§impl StyleProps
impl StyleProps
Sourcepub fn attributes(&self) -> Vec<(&'static str, String)>
pub fn attributes(&self) -> Vec<(&'static str, String)>
Get all the attributes for the style tag
pub fn style_contents(&self) -> Result<String, ExtractSingleTextNodeError<'_>>
Trait Implementations§
Source§impl Clone for StyleProps
impl Clone for StyleProps
Source§fn clone(&self) -> StyleProps
fn clone(&self) -> StyleProps
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 StyleProps
impl PartialEq for StyleProps
Source§impl Properties for StylePropswhere
Self: Clone,
impl Properties for StylePropswhere
Self: Clone,
Source§type Builder = StylePropsBuilder<((), (), (), (), ())>
type Builder = StylePropsBuilder<((), (), (), (), ())>
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 StyleProps
Auto Trait Implementations§
impl !Freeze for StyleProps
impl !RefUnwindSafe for StyleProps
impl !Send for StyleProps
impl !Sync for StyleProps
impl Unpin for StyleProps
impl !UnwindSafe for StyleProps
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.