pub struct RootFields {
pub title: String,
pub updated_at: DateTime<Utc>,
}Expand description
Fields the index needs from a root session payload (for rebuild).
Fields§
§title: String§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for RootFields
impl Clone for RootFields
Source§fn clone(&self) -> RootFields
fn clone(&self) -> RootFields
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 RootFields
impl Debug for RootFields
Source§impl PartialEq for RootFields
impl PartialEq for RootFields
Source§fn eq(&self, other: &RootFields) -> bool
fn eq(&self, other: &RootFields) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RootFields
Auto Trait Implementations§
impl Freeze for RootFields
impl RefUnwindSafe for RootFields
impl Send for RootFields
impl Sync for RootFields
impl Unpin for RootFields
impl UnsafeUnpin for RootFields
impl UnwindSafe for RootFields
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