[][src]Struct rdxl_scaffolding::dom::Base

pub struct Base {
    pub href: String,
    pub target: String,
    pub children: Vec<BaseChildren>,
}

Fields

href: Stringtarget: Stringchildren: Vec<BaseChildren>

Implementations

impl Base[src]

pub fn new() -> Base[src]

pub fn set_children(self, v: Vec<BaseChildren>) -> Base[src]

pub fn set_href(self, v: String) -> Base[src]

pub fn set_target(self, v: String) -> Base[src]

Trait Implementations

impl Display for Base[src]

Auto Trait Implementations

impl RefUnwindSafe for Base

impl Send for Base

impl Sync for Base

impl Unpin for Base

impl UnwindSafe for Base

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> ToString for T where
    T: Display + ?Sized
[src]

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.