pub struct Murk {
pub values: HashMap<String, String>,
pub recipients: HashMap<String, String>,
pub scoped: HashMap<String, HashMap<String, String>>,
}Fields§
§values: HashMap<String, String>Decrypted shared values.
recipients: HashMap<String, String>Pubkey → display name (from meta).
scoped: HashMap<String, HashMap<String, String>>Scoped overrides: key → { pubkey → decrypted value }. Only contains entries decryptable by the current identity.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Murk
impl RefUnwindSafe for Murk
impl Send for Murk
impl Sync for Murk
impl Unpin for Murk
impl UnsafeUnpin for Murk
impl UnwindSafe for Murk
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