pub enum SignOutputFormat {
Url,
Json,
Signature,
}Expand description
Output format for the sign command.
Variants§
Url
Output the complete signed URL (default)
Json
Output as JSON with signature, expiry, and URL
Signature
Output only the signature (hex-encoded)
Trait Implementations§
Source§impl Clone for SignOutputFormat
impl Clone for SignOutputFormat
Source§fn clone(&self) -> SignOutputFormat
fn clone(&self) -> SignOutputFormat
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 moreSource§impl Debug for SignOutputFormat
impl Debug for SignOutputFormat
Source§impl Default for SignOutputFormat
impl Default for SignOutputFormat
Source§fn default() -> SignOutputFormat
fn default() -> SignOutputFormat
Returns the “default value” for a type. Read more
Source§impl Display for SignOutputFormat
impl Display for SignOutputFormat
Source§impl ValueEnum for SignOutputFormat
impl ValueEnum for SignOutputFormat
impl Copy for SignOutputFormat
Auto Trait Implementations§
impl Freeze for SignOutputFormat
impl RefUnwindSafe for SignOutputFormat
impl Send for SignOutputFormat
impl Sync for SignOutputFormat
impl Unpin for SignOutputFormat
impl UnwindSafe for SignOutputFormat
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.