pub struct EmptyHTMLLayout { /* private fields */ }Expand description
Mise en page HTML vide.
Trait Implementations§
Source§impl ViewLayoutInterface for EmptyHTMLLayout
impl ViewLayoutInterface for EmptyHTMLLayout
type Metadata = Node
type Scripts = Node
type Styles = Node
type View = Node
Source§fn new() -> Selfwhere
Self: Sized,
fn new() -> Selfwhere
Self: Sized,
Crée une nouvelle instance de la mise en page.
Source§fn add_meta(&mut self, _: Self::Metadata)
fn add_meta(&mut self, _: Self::Metadata)
Ajoute une méta-données au document de la mise en page.
Source§fn add_script(&mut self, _: Self::Scripts)
fn add_script(&mut self, _: Self::Scripts)
Ajoute un script au document de la mise en page.
Auto Trait Implementations§
impl Freeze for EmptyHTMLLayout
impl RefUnwindSafe for EmptyHTMLLayout
impl Send for EmptyHTMLLayout
impl Sync for EmptyHTMLLayout
impl Unpin for EmptyHTMLLayout
impl UnwindSafe for EmptyHTMLLayout
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> 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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more