pub struct ChangeEnvelopeOptions {
pub lifecycle: ChangeLifecycle,
pub structure: String,
pub version: Value,
pub t_ns: Option<String>,
pub seq: Option<u64>,
}Expand description
ChangeEnvelopeOptions data container.
Fields§
§lifecycle: ChangeLifecyclelifecycle field for lifecycle.
structure: Stringstructure field for structure.
version: Valueversion field for version.
t_ns: Option<String>t_ns field for t ns.
seq: Option<u64>seq field for seq.
Implementations§
Source§impl ChangeEnvelopeOptions
impl ChangeEnvelopeOptions
Sourcepub fn with_lifecycle(self, lifecycle: ChangeLifecycle) -> Self
pub fn with_lifecycle(self, lifecycle: ChangeLifecycle) -> Self
Updates or reads with_lifecycle.
Sourcepub fn with_version(self, version: impl Into<Value>) -> Self
pub fn with_version(self, version: impl Into<Value>) -> Self
Updates or reads with_version.
Trait Implementations§
Source§impl Clone for ChangeEnvelopeOptions
impl Clone for ChangeEnvelopeOptions
Source§fn clone(&self) -> ChangeEnvelopeOptions
fn clone(&self) -> ChangeEnvelopeOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ChangeEnvelopeOptions
impl RefUnwindSafe for ChangeEnvelopeOptions
impl Send for ChangeEnvelopeOptions
impl Sync for ChangeEnvelopeOptions
impl Unpin for ChangeEnvelopeOptions
impl UnsafeUnpin for ChangeEnvelopeOptions
impl UnwindSafe for ChangeEnvelopeOptions
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