pub enum SignaturesDelta {
Append(SignaturesAppend),
Replace(SignaturesReplace),
}Variants§
Append(SignaturesAppend)
Vars should append onto underlying template
Replace(SignaturesReplace)
Vars should replace the underlying template
Trait Implementations§
Source§impl Clone for SignaturesDelta
impl Clone for SignaturesDelta
Source§fn clone(&self) -> SignaturesDelta
fn clone(&self) -> SignaturesDelta
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 SignaturesDelta
impl RefUnwindSafe for SignaturesDelta
impl Send for SignaturesDelta
impl Sync for SignaturesDelta
impl Unpin for SignaturesDelta
impl UnsafeUnpin for SignaturesDelta
impl UnwindSafe for SignaturesDelta
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