pub enum XIDGenesisMarkOptions {
None,
Passphrase(String, Option<ProvenanceMarkResolution>, Option<Date>, Option<CBOR>),
Seed(ProvenanceSeed, Option<ProvenanceMarkResolution>, Option<Date>, Option<CBOR>),
}Variants§
None
Passphrase(String, Option<ProvenanceMarkResolution>, Option<Date>, Option<CBOR>)
Seed(ProvenanceSeed, Option<ProvenanceMarkResolution>, Option<Date>, Option<CBOR>)
Trait Implementations§
Source§impl Default for XIDGenesisMarkOptions
impl Default for XIDGenesisMarkOptions
Source§fn default() -> XIDGenesisMarkOptions
fn default() -> XIDGenesisMarkOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for XIDGenesisMarkOptions
impl RefUnwindSafe for XIDGenesisMarkOptions
impl Send for XIDGenesisMarkOptions
impl Sync for XIDGenesisMarkOptions
impl Unpin for XIDGenesisMarkOptions
impl UnwindSafe for XIDGenesisMarkOptions
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more