pub struct SecretsSummary {
pub current_version: SecretVersion,
pub version_ids: BTreeSet<SecretVersion>,
pub member_secrets: BTreeSet<(SecretVersion, MemberId)>,
}Expand description
Summary of room secrets state for delta calculation
Fields§
§current_version: SecretVersion§version_ids: BTreeSet<SecretVersion>§member_secrets: BTreeSet<(SecretVersion, MemberId)>Trait Implementations§
Source§impl Clone for SecretsSummary
impl Clone for SecretsSummary
Source§fn clone(&self) -> SecretsSummary
fn clone(&self) -> SecretsSummary
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 SecretsSummary
impl Debug for SecretsSummary
Source§impl<'de> Deserialize<'de> for SecretsSummary
impl<'de> Deserialize<'de> for SecretsSummary
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 SecretsSummary
impl PartialEq for SecretsSummary
Source§impl Serialize for SecretsSummary
impl Serialize for SecretsSummary
impl StructuralPartialEq for SecretsSummary
Auto Trait Implementations§
impl Freeze for SecretsSummary
impl RefUnwindSafe for SecretsSummary
impl Send for SecretsSummary
impl Sync for SecretsSummary
impl Unpin for SecretsSummary
impl UnsafeUnpin for SecretsSummary
impl UnwindSafe for SecretsSummary
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