pub struct Time {
    pub secs: Option<u64>,
}

Fields§

§secs: Option<u64>

Implementations§

source§

impl Time

source

pub fn new(secs: u64) -> Self

source

pub fn secs(self, secs: u64) -> Self

Trait Implementations§

source§

impl Clone for Time

source§

fn clone(&self) -> Time

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Time

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Time

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl FromStr for Time

§

type Err = SimpleError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Generator<Time> for Time

source§

fn merge_with_default(self, default: Self) -> Self

Merge this companion with the another, default one. The options present in this object will override those in the default one.
source§

fn generate(&self) -> Result<Time, SimpleError>

Generate the complex object from this companion object.
source§

fn encode(&self) -> Result<String, SimpleError>

Generate and serialize the complex object
source§

impl Options for Time

source§

fn parse<__S: AsRef<str>>(_parser: &mut Parser<'_, __S>) -> Result<Self, Error>

Parses arguments until the given parser is exhausted or until an error is encountered.
source§

fn command(&self) -> Option<&dyn Options>

Returns the subcommand instance, if present. Read more
source§

fn command_name(&self) -> Option<&'static str>

Returns the name of a parsed command, if present. Read more
source§

fn help_requested(&self) -> bool

Returns whether the user supplied a “help” option to request usage information about the program or any contained subcommands. Read more
source§

fn parse_command<__S: AsRef<str>>( name: &str, _parser: &mut Parser<'_, __S> ) -> Result<Self, Error>

Parses options for the named command.
source§

fn usage() -> &'static str

Returns a string showing usage and help for each supported option. Read more
source§

fn self_usage(&self) -> &'static str

Returns a string showing usage and help for this options instance. Read more
source§

fn command_list() -> Option<&'static str>

Returns a string listing available commands and help text. Read more
source§

fn command_usage(_name: &str) -> Option<&'static str>

Returns a usage string for the named command. Read more
source§

fn self_command_list(&self) -> Option<&'static str>

Returns a listing of available commands and help text. Read more
source§

fn parse_args<S>(args: &[S], style: ParsingStyle) -> Result<Self, Error>
where S: AsRef<str>, Self: Sized,

Parses arguments received from the command line. Read more
source§

fn parse_args_or_exit(style: ParsingStyle) -> Self
where Self: Sized,

Parses arguments from the environment. Read more
source§

fn parse_args_default_or_exit() -> Self
where Self: Sized,

Parses arguments from the environment, using the default parsing style. Read more
source§

fn parse_args_default<S>(args: &[S]) -> Result<Self, Error>
where S: AsRef<str>, Self: Sized,

Parses arguments received from the command line, using the default parsing style. Read more

Auto Trait Implementations§

§

impl Freeze for Time

§

impl RefUnwindSafe for Time

§

impl Send for Time

§

impl Sync for Time

§

impl Unpin for Time

§

impl UnwindSafe for Time

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,