pub struct TypedContentObject {
pub root: TypedContentRoot,
pub bytes: Vec<u8>,
pub depth: usize,
}Expand description
One authenticated object returned in descendant-first order.
Fields§
§root: TypedContentRoot§bytes: Vec<u8>§depth: usizeTrait Implementations§
Source§impl Clone for TypedContentObject
impl Clone for TypedContentObject
Source§fn clone(&self) -> TypedContentObject
fn clone(&self) -> TypedContentObject
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 TypedContentObject
impl Debug for TypedContentObject
impl Eq for TypedContentObject
Source§impl PartialEq for TypedContentObject
impl PartialEq for TypedContentObject
impl StructuralPartialEq for TypedContentObject
Auto Trait Implementations§
impl Freeze for TypedContentObject
impl RefUnwindSafe for TypedContentObject
impl Send for TypedContentObject
impl Sync for TypedContentObject
impl Unpin for TypedContentObject
impl UnsafeUnpin for TypedContentObject
impl UnwindSafe for TypedContentObject
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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