pub struct IntentSpec {
pub name: String,
pub fields: Vec<IntentFieldSpec>,
pub mirror_writes: Vec<IntentMirrorWriteSpec>,
}Fields§
§name: String§fields: Vec<IntentFieldSpec>§mirror_writes: Vec<IntentMirrorWriteSpec>Trait Implementations§
Source§impl Clone for IntentSpec
impl Clone for IntentSpec
Source§fn clone(&self) -> IntentSpec
fn clone(&self) -> IntentSpec
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 IntentSpec
impl Debug for IntentSpec
Source§impl PartialEq for IntentSpec
impl PartialEq for IntentSpec
Source§fn eq(&self, other: &IntentSpec) -> bool
fn eq(&self, other: &IntentSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntentSpec
Auto Trait Implementations§
impl Freeze for IntentSpec
impl RefUnwindSafe for IntentSpec
impl Send for IntentSpec
impl Sync for IntentSpec
impl Unpin for IntentSpec
impl UnsafeUnpin for IntentSpec
impl UnwindSafe for IntentSpec
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