pub struct EpochsArgs<'a> {
pub first: Option<i32>,
pub after: Option<&'a str>,
pub last: Option<i32>,
pub before: Option<&'a str>,
}
Fields§
§first: Option<i32>
§after: Option<&'a str>
§last: Option<i32>
§before: Option<&'a str>
Trait Implementations§
Source§impl<'a> Debug for EpochsArgs<'a>
impl<'a> Debug for EpochsArgs<'a>
Source§impl<'a> QueryVariables for EpochsArgs<'a>
impl<'a> QueryVariables for EpochsArgs<'a>
Auto Trait Implementations§
impl<'a> Freeze for EpochsArgs<'a>
impl<'a> RefUnwindSafe for EpochsArgs<'a>
impl<'a> Send for EpochsArgs<'a>
impl<'a> Sync for EpochsArgs<'a>
impl<'a> Unpin for EpochsArgs<'a>
impl<'a> UnwindSafe for EpochsArgs<'a>
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read moreSource§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