pub struct MemoryScope(/* private fields */);Expand description
What a memory is about.
A scope is the thing memory is organised around — for this engine a working session, for a host that keeps memory of its own something else. It is a validated string rather than a ceremony id because the engine writing memory and the memory itself do not have to agree on what the world is made of, only on how to name a corner of it.
Implementations§
Source§impl MemoryScope
impl MemoryScope
pub fn new(raw: impl Into<String>) -> Result<Self, DomainError>
Sourcepub fn of_ceremony(ceremony_id: &CeremonyId) -> Result<Self, DomainError>
pub fn of_ceremony(ceremony_id: &CeremonyId) -> Result<Self, DomainError>
The scope a working session’s memory belongs to.
Prefixed rather than bare so a memory shared with other writers says what kind of thing it is about, and so a host that also keeps memory of its own — its cases, its tickets — can do that alongside without collision.
pub fn as_str(&self) -> &str
Trait Implementations§
Source§impl Clone for MemoryScope
impl Clone for MemoryScope
Source§fn clone(&self) -> MemoryScope
fn clone(&self) -> MemoryScope
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 MemoryScope
impl Debug for MemoryScope
Source§impl<'de> Deserialize<'de> for MemoryScope
impl<'de> Deserialize<'de> for MemoryScope
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 Display for MemoryScope
impl Display for MemoryScope
impl Eq for MemoryScope
Source§impl Hash for MemoryScope
impl Hash for MemoryScope
Source§impl Ord for MemoryScope
impl Ord for MemoryScope
Source§fn cmp(&self, other: &MemoryScope) -> Ordering
fn cmp(&self, other: &MemoryScope) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for MemoryScope
impl PartialEq for MemoryScope
Source§impl PartialOrd for MemoryScope
impl PartialOrd for MemoryScope
Source§impl Serialize for MemoryScope
impl Serialize for MemoryScope
impl StructuralPartialEq for MemoryScope
Auto Trait Implementations§
impl Freeze for MemoryScope
impl RefUnwindSafe for MemoryScope
impl Send for MemoryScope
impl Sync for MemoryScope
impl Unpin for MemoryScope
impl UnsafeUnpin for MemoryScope
impl UnwindSafe for MemoryScope
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