pub struct LandingHtmlTemplate {
pub title: String,
pub rudof_version: String,
pub created_time: String,
pub shapes: Vec<ShapeRef>,
pub svg_schema: String,
}
Fields§
§title: String
§rudof_version: String
§created_time: String
§shapes: Vec<ShapeRef>
§svg_schema: String
Trait Implementations§
Source§impl Debug for LandingHtmlTemplate
impl Debug for LandingHtmlTemplate
Source§impl Default for LandingHtmlTemplate
impl Default for LandingHtmlTemplate
Source§fn default() -> LandingHtmlTemplate
fn default() -> LandingHtmlTemplate
Returns the “default value” for a type. Read more
Source§impl PartialEq for LandingHtmlTemplate
impl PartialEq for LandingHtmlTemplate
Source§impl Serialize for LandingHtmlTemplate
impl Serialize for LandingHtmlTemplate
impl StructuralPartialEq for LandingHtmlTemplate
Auto Trait Implementations§
impl Freeze for LandingHtmlTemplate
impl RefUnwindSafe for LandingHtmlTemplate
impl Send for LandingHtmlTemplate
impl Sync for LandingHtmlTemplate
impl Unpin for LandingHtmlTemplate
impl UnwindSafe for LandingHtmlTemplate
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