pub struct TimeParameters {
pub start_time: U64,
pub block_time_interval: U64,
}
Fields§
§start_time: U64
§block_time_interval: U64
Trait Implementations§
Source§impl Clone for TimeParameters
impl Clone for TimeParameters
Source§fn clone(&self) -> TimeParameters
fn clone(&self) -> TimeParameters
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 TimeParameters
impl Debug for TimeParameters
Source§impl InputObject for TimeParameters
impl InputObject for TimeParameters
Source§type SchemaType = TimeParameters
type SchemaType = TimeParameters
The input object in the schema that this type represents.
Source§impl Serialize for TimeParameters
impl Serialize for TimeParameters
Source§impl Variable for TimeParameters
impl Variable for TimeParameters
const TYPE: VariableType
impl CoercesTo<Option<Option<TimeParameters>>> for TimeParameters
impl CoercesTo<Option<TimeParameters>> for TimeParameters
impl CoercesTo<Option<Vec<Option<TimeParameters>>>> for TimeParameters
impl CoercesTo<Option<Vec<TimeParameters>>> for TimeParameters
impl CoercesTo<TimeParameters> for TimeParameters
impl CoercesTo<Vec<TimeParameters>> for TimeParameters
impl CoercesTo<Vec<Vec<TimeParameters>>> for TimeParameters
Auto Trait Implementations§
impl Freeze for TimeParameters
impl RefUnwindSafe for TimeParameters
impl Send for TimeParameters
impl Sync for TimeParameters
impl Unpin for TimeParameters
impl UnwindSafe for TimeParameters
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 more