pub struct MemoryWriteProposal {
pub name: String,
pub kind: MemoryKind,
pub content: String,
pub description: String,
pub evidence_refs: Vec<String>,
}Expand description
A proposal, not a record. It carries no tenant/namespace, no record id, no author or trust level, no timestamp and no session provenance: the kernel derives all of those from the operation’s memory binding, the envelope’s accepted time and the syscall causation.
Fields§
§name: String§kind: MemoryKind§content: String§description: String§evidence_refs: Vec<String>Trait Implementations§
Source§impl Clone for MemoryWriteProposal
impl Clone for MemoryWriteProposal
Source§fn clone(&self) -> MemoryWriteProposal
fn clone(&self) -> MemoryWriteProposal
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 MemoryWriteProposal
impl Debug for MemoryWriteProposal
Source§impl<'de> Deserialize<'de> for MemoryWriteProposal
impl<'de> Deserialize<'de> for MemoryWriteProposal
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 MemoryWriteProposal
impl PartialEq for MemoryWriteProposal
Source§impl Serialize for MemoryWriteProposal
impl Serialize for MemoryWriteProposal
impl StructuralPartialEq for MemoryWriteProposal
Auto Trait Implementations§
impl Freeze for MemoryWriteProposal
impl RefUnwindSafe for MemoryWriteProposal
impl Send for MemoryWriteProposal
impl Sync for MemoryWriteProposal
impl Unpin for MemoryWriteProposal
impl UnsafeUnpin for MemoryWriteProposal
impl UnwindSafe for MemoryWriteProposal
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