pub enum VerifyOriginResult {
InvokedBySegmenter(Origin),
NotInvokedBySegmenter,
}
Variants§
InvokedBySegmenter(Origin)
The invocation was signed by a segmenter
NotInvokedBySegmenter
The invocation was not signed by a segmenter
Trait Implementations§
Source§impl Clone for VerifyOriginResult
impl Clone for VerifyOriginResult
Source§fn clone(&self) -> VerifyOriginResult
fn clone(&self) -> VerifyOriginResult
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 moreSource§impl Debug for VerifyOriginResult
impl Debug for VerifyOriginResult
Source§impl PartialEq for VerifyOriginResult
impl PartialEq for VerifyOriginResult
impl Copy for VerifyOriginResult
impl Eq for VerifyOriginResult
impl StructuralPartialEq for VerifyOriginResult
Auto Trait Implementations§
impl Freeze for VerifyOriginResult
impl RefUnwindSafe for VerifyOriginResult
impl Send for VerifyOriginResult
impl Sync for VerifyOriginResult
impl Unpin for VerifyOriginResult
impl UnwindSafe for VerifyOriginResult
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