pub struct ActiveValidatorsArgs<'a> {
pub id: Option<u64>,
pub after: Option<&'a str>,
pub before: Option<&'a str>,
pub first: Option<i32>,
pub last: Option<i32>,
}
Fields§
§id: Option<u64>
§after: Option<&'a str>
§before: Option<&'a str>
§first: Option<i32>
§last: Option<i32>
Trait Implementations§
Source§impl<'a> Debug for ActiveValidatorsArgs<'a>
impl<'a> Debug for ActiveValidatorsArgs<'a>
Source§impl<'a> QueryVariables for ActiveValidatorsArgs<'a>
impl<'a> QueryVariables for ActiveValidatorsArgs<'a>
Auto Trait Implementations§
impl<'a> Freeze for ActiveValidatorsArgs<'a>
impl<'a> RefUnwindSafe for ActiveValidatorsArgs<'a>
impl<'a> Send for ActiveValidatorsArgs<'a>
impl<'a> Sync for ActiveValidatorsArgs<'a>
impl<'a> Unpin for ActiveValidatorsArgs<'a>
impl<'a> UnwindSafe for ActiveValidatorsArgs<'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