Skip to main content

EncryptedMutations

Type Alias EncryptedMutations 

Source
pub type EncryptedMutations = EncryptedMutationsV49;

Aliased Type§

pub struct EncryptedMutations { /* private fields */ }

Trait Implementations§

Source§

impl Debug for EncryptedMutations

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Versioned for EncryptedMutations

Source§

fn max_serialized_size() -> Option<u64>

Maximum size of a serialized version of this type. Serialization and deserialization will fail if the limit is exceeded. If None, there is no limit. None is preferred over u64::MAX because serializing and deserializing with a limit has runtime overhead.
Source§

fn deserialize_from<R>(reader: &mut R, _version: Version) -> Result<Self>
where R: Read + ?Sized, for<'de> Self: Deserialize<'de>,

Source§

fn serialize_into<W>(&self, writer: &mut W) -> Result<()>
where W: Write, Self: Serialize,