[]Struct sauron::prelude::mt_dom::Attribute

pub struct Attribute<NS, ATT, VAL, EVENT, MSG> { /* fields omitted */ }

These are the plain attributes of an element

Implementations

impl<NS, ATT, VAL, EVENT, MSG> Attribute<NS, ATT, VAL, EVENT, MSG>

pub fn new(
    namespace: Option<NS>,
    name: ATT,
    value: VAL
) -> Attribute<NS, ATT, VAL, EVENT, MSG>

create a plain attribute with namespace

pub fn with_multiple_values(
    namespace: Option<NS>,
    name: ATT,
    value: Vec<VAL, Global>
) -> Attribute<NS, ATT, VAL, EVENT, MSG>

create from multiple values

pub fn name(&self) -> &ATT

Notable traits for &'_ mut R

impl<'_, R> Read for &'_ mut R where
    R: Read + ?Sized
impl<'_, W> Write for &'_ mut W where
    W: Write + ?Sized
impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;

return the name of this attribute

pub fn value(&self) -> &[AttValue<VAL, EVENT, MSG>]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]

return the value of this attribute

pub fn namespace(&self) -> Option<&NS>

return the namespace of this attribute

pub fn get_plain(&self) -> Vec<&VAL, Global>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>

return the plain value if it is a plain value

impl<NS, ATT, VAL, EVENT, MSG> Attribute<NS, ATT, VAL, EVENT, MSG> where
    MSG: 'static,
    EVENT: 'static, 

pub fn map_msg<F, MSG2>(self, func: F) -> Attribute<NS, ATT, VAL, EVENT, MSG2> where
    F: Fn(MSG) -> MSG2 + 'static,
    MSG2: 'static, 

map the msg

pub fn map_callback<MSG2>(
    self,
    cb: Callback<MSG, MSG2>
) -> Attribute<NS, ATT, VAL, EVENT, MSG2> where
    MSG2: 'static, 

transform the callback of this attribute

pub fn get_callback(&self) -> Vec<&Callback<EVENT, MSG>, Global>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>

return the callback values of this attribute

Trait Implementations

impl<NS, ATT, VAL, EVENT, MSG> Clone for Attribute<NS, ATT, VAL, EVENT, MSG> where
    NS: Clone,
    ATT: Clone,
    VAL: Clone

Note: using the #[derive(Debug)] needs EVENT and MSG to also be Debug

The reason this is manually implemented is, so that EVENT and MSG doesn't need to be Debug as it is part of the Callback objects and are not shown.

impl<NS, ATT, VAL, EVENT, MSG> Debug for Attribute<NS, ATT, VAL, EVENT, MSG> where
    NS: Debug,
    ATT: Debug,
    VAL: Debug

Note: using the #[derive(Debug)] needs EVENT and MSG to also be Debug

The reason this is manually implemented is, so that EVENT and MSG doesn't need to be Debug as it is part of the Callback objects and are not shown.

impl<NS, ATT, VAL, EVENT, MSG> PartialEq<Attribute<NS, ATT, VAL, EVENT, MSG>> for Attribute<NS, ATT, VAL, EVENT, MSG> where
    NS: PartialEq<NS>,
    ATT: PartialEq<ATT>,
    VAL: PartialEq<VAL>, 

Note: using the #[derive(PartialEq)] needs EVENT and MSG to also be PartialEq.

The reason this is manually implemented is, so that EVENT and MSG doesn't need to be PartialEq as it is part of the Callback objects and are not compared

impl<MSG> Render for Attribute<&'static str, &'static str, AttributeValue, Event, MSG>[src]

Auto Trait Implementations

impl<NS, ATT, VAL, EVENT, MSG> !RefUnwindSafe for Attribute<NS, ATT, VAL, EVENT, MSG>[src]

impl<NS, ATT, VAL, EVENT, MSG> !Send for Attribute<NS, ATT, VAL, EVENT, MSG>[src]

impl<NS, ATT, VAL, EVENT, MSG> !Sync for Attribute<NS, ATT, VAL, EVENT, MSG>[src]

impl<NS, ATT, VAL, EVENT, MSG> Unpin for Attribute<NS, ATT, VAL, EVENT, MSG> where
    ATT: Unpin,
    NS: Unpin,
    VAL: Unpin
[src]

impl<NS, ATT, VAL, EVENT, MSG> !UnwindSafe for Attribute<NS, ATT, VAL, EVENT, MSG>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.