pub enum SignatureDeltaVec {
Sigs(Vec<Signature>),
Default,
}
Variants§
Sigs(Vec<Signature>)
Default
“Default” will pull the value of the signature from the specified hardcoded template (and fail if one wasn’t specified)
It shouldn’t be used in the hardcoded templates
Trait Implementations§
Source§impl Clone for SignatureDeltaVec
impl Clone for SignatureDeltaVec
Source§fn clone(&self) -> SignatureDeltaVec
fn clone(&self) -> SignatureDeltaVec
Returns a copy 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 SignatureDeltaVec
impl RefUnwindSafe for SignatureDeltaVec
impl Send for SignatureDeltaVec
impl Sync for SignatureDeltaVec
impl Unpin for SignatureDeltaVec
impl UnwindSafe for SignatureDeltaVec
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