Struct leptos_meta::ServerMetaContextOutput
source · pub struct ServerMetaContextOutput { /* private fields */ }
Expand description
Allows you to access <head>
content that was inserted via ServerMetaContext
.
Implementations§
source§impl ServerMetaContextOutput
impl ServerMetaContextOutput
sourcepub async fn inject_meta_context(
self,
stream: impl Stream<Item = String> + Send + Unpin,
) -> impl Stream<Item = String> + Send
pub async fn inject_meta_context( self, stream: impl Stream<Item = String> + Send + Unpin, ) -> impl Stream<Item = String> + Send
Consumes the metadata, injecting it into the the first chunk of an HTML stream in the appropriate place.
This means that only meta tags rendered during the first chunk of the stream will be included.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ServerMetaContextOutput
impl RefUnwindSafe for ServerMetaContextOutput
impl Send for ServerMetaContextOutput
impl !Sync for ServerMetaContextOutput
impl Unpin for ServerMetaContextOutput
impl UnwindSafe for ServerMetaContextOutput
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> 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 moresource§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.