pub struct CollectedData {
pub meta_tags: Vec<MetaTagItem>,
pub schema_org_data: Vec<Value>,
pub title: Option<String>,
pub favicon: Option<String>,
pub mini_app_embed: Option<String>,
}Fields§
§schema_org_data: Vec<Value>§title: Option<String>§favicon: Option<String>§mini_app_embed: Option<String>Trait Implementations§
Source§impl Clone for CollectedData
impl Clone for CollectedData
Source§fn clone(&self) -> CollectedData
fn clone(&self) -> CollectedData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CollectedData
impl Debug for CollectedData
Source§impl Default for CollectedData
impl Default for CollectedData
Source§fn default() -> CollectedData
fn default() -> CollectedData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CollectedData
impl RefUnwindSafe for CollectedData
impl Send for CollectedData
impl Sync for CollectedData
impl Unpin for CollectedData
impl UnsafeUnpin for CollectedData
impl UnwindSafe for CollectedData
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