pub struct BreadcrumbItem {
pub name: String,
pub url: Option<String>,
pub position: u32,
}Expand description
A breadcrumb item from JSON-LD BreadcrumbList.
Fields§
§name: String§url: Option<String>§position: u32Trait Implementations§
Source§impl Clone for BreadcrumbItem
impl Clone for BreadcrumbItem
Source§fn clone(&self) -> BreadcrumbItem
fn clone(&self) -> BreadcrumbItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BreadcrumbItem
impl RefUnwindSafe for BreadcrumbItem
impl Send for BreadcrumbItem
impl Sync for BreadcrumbItem
impl Unpin for BreadcrumbItem
impl UnsafeUnpin for BreadcrumbItem
impl UnwindSafe for BreadcrumbItem
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