pub struct SecuritySingletonWire {
pub signature: String,
pub collection: String,
pub config: Value,
pub extra: BTreeMap<String, Value>,
}Expand description
The security-properties singleton READ — typed shell (the merge
works at Value level inside config; the config’s full shape is
passthrough by design, the doctor precedent).
Fields§
§signature: StringThe optimistic-concurrency token — MUST ride the PUT verbatim or the write refuses (rotates on every write; live-observed).
collection: String"core" on every capture.
config: ValueThe whole config (readPermissions/writePermissions live
HERE, nested — not at the record’s top level).
extra: BTreeMap<String, Value>Unknown keys round-trip.
Trait Implementations§
Source§impl Clone for SecuritySingletonWire
impl Clone for SecuritySingletonWire
Source§fn clone(&self) -> SecuritySingletonWire
fn clone(&self) -> SecuritySingletonWire
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 SecuritySingletonWire
impl Debug for SecuritySingletonWire
Source§impl<'de> Deserialize<'de> for SecuritySingletonWire
impl<'de> Deserialize<'de> for SecuritySingletonWire
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 SecuritySingletonWire
impl PartialEq for SecuritySingletonWire
Source§impl Serialize for SecuritySingletonWire
impl Serialize for SecuritySingletonWire
impl StructuralPartialEq for SecuritySingletonWire
Auto Trait Implementations§
impl Freeze for SecuritySingletonWire
impl RefUnwindSafe for SecuritySingletonWire
impl Send for SecuritySingletonWire
impl Sync for SecuritySingletonWire
impl Unpin for SecuritySingletonWire
impl UnsafeUnpin for SecuritySingletonWire
impl UnwindSafe for SecuritySingletonWire
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