pub struct StructureSeed<'a> { /* private fields */ }
Expand description
Use this to deserialize a Structure
.
The lifetime 'a
is now redundant and kept only for backward compatibility. All instances now
has a 'static
lifetime. This will be removed in the next major release.
Implementations§
Source§impl StructureSeed<'static>
impl StructureSeed<'static>
Sourcepub fn new_unchecked(signature: &Signature) -> Self
pub fn new_unchecked(signature: &Signature) -> Self
Create a new StructureSeed
The given signature must be a valid structure signature.
Trait Implementations§
Source§impl<'a> Clone for StructureSeed<'a>
impl<'a> Clone for StructureSeed<'a>
Source§fn clone(&self) -> StructureSeed<'a>
fn clone(&self) -> StructureSeed<'a>
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 moreSource§impl<'a> Debug for StructureSeed<'a>
impl<'a> Debug for StructureSeed<'a>
Source§impl<'de> DeserializeSeed<'de> for StructureSeed<'_>
impl<'de> DeserializeSeed<'de> for StructureSeed<'_>
Source§fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(self, deserializer: D) -> Result<Self::Value, D::Error>where
D: Deserializer<'de>,
Equivalent to the more common
Deserialize::deserialize
method, except
with some initial piece of data (the seed) passed in.Source§impl DynamicType for StructureSeed<'_>
impl DynamicType for StructureSeed<'_>
Source§impl<'a> PartialEq for StructureSeed<'a>
impl<'a> PartialEq for StructureSeed<'a>
Source§impl TryFrom<Signature> for StructureSeed<'static>
impl TryFrom<Signature> for StructureSeed<'static>
impl<'a> Eq for StructureSeed<'a>
impl<'a> StructuralPartialEq for StructureSeed<'a>
Auto Trait Implementations§
impl<'a> Freeze for StructureSeed<'a>
impl<'a> RefUnwindSafe for StructureSeed<'a>
impl<'a> Send for StructureSeed<'a>
impl<'a> Sync for StructureSeed<'a>
impl<'a> Unpin for StructureSeed<'a>
impl<'a> UnwindSafe for StructureSeed<'a>
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