pub struct NestedIdentity {
pub field: String,
pub offset: u64,
pub nested: Option<Box<NestedIdentity>>,
}
Expand description
Nested document metadata
Fields§
§field: String
Field
offset: u64
Offset
nested: Option<Box<NestedIdentity>>
Nested document metadata
Trait Implementations§
Source§impl Clone for NestedIdentity
impl Clone for NestedIdentity
Source§fn clone(&self) -> NestedIdentity
fn clone(&self) -> NestedIdentity
Returns a copy 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 moreSource§impl Debug for NestedIdentity
impl Debug for NestedIdentity
Source§impl<'de> Deserialize<'de> for NestedIdentity
impl<'de> Deserialize<'de> for NestedIdentity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NestedIdentity
impl PartialEq for NestedIdentity
Source§impl Serialize for NestedIdentity
impl Serialize for NestedIdentity
impl StructuralPartialEq for NestedIdentity
Auto Trait Implementations§
impl Freeze for NestedIdentity
impl RefUnwindSafe for NestedIdentity
impl Send for NestedIdentity
impl Sync for NestedIdentity
impl Unpin for NestedIdentity
impl UnwindSafe for NestedIdentity
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