pub struct NormalizedMoveModuleQueryArgs<'a> {Show 19 fields
pub package: Address,
pub module: &'a str,
pub version: Option<u64>,
pub after_enums: Option<&'a str>,
pub after_functions: Option<&'a str>,
pub after_structs: Option<&'a str>,
pub after_friends: Option<&'a str>,
pub before_enums: Option<&'a str>,
pub before_functions: Option<&'a str>,
pub before_structs: Option<&'a str>,
pub before_friends: Option<&'a str>,
pub first_enums: Option<i32>,
pub first_functions: Option<i32>,
pub first_structs: Option<i32>,
pub first_friends: Option<i32>,
pub last_enums: Option<i32>,
pub last_functions: Option<i32>,
pub last_structs: Option<i32>,
pub last_friends: Option<i32>,
}
Fields§
§package: Address
§module: &'a str
§version: Option<u64>
§after_enums: Option<&'a str>
§after_functions: Option<&'a str>
§after_structs: Option<&'a str>
§after_friends: Option<&'a str>
§before_enums: Option<&'a str>
§before_functions: Option<&'a str>
§before_structs: Option<&'a str>
§before_friends: Option<&'a str>
§first_enums: Option<i32>
§first_functions: Option<i32>
§first_structs: Option<i32>
§first_friends: Option<i32>
§last_enums: Option<i32>
§last_functions: Option<i32>
§last_structs: Option<i32>
§last_friends: Option<i32>
Trait Implementations§
Source§impl<'a> Debug for NormalizedMoveModuleQueryArgs<'a>
impl<'a> Debug for NormalizedMoveModuleQueryArgs<'a>
Source§impl<'a> QueryVariables for NormalizedMoveModuleQueryArgs<'a>
impl<'a> QueryVariables for NormalizedMoveModuleQueryArgs<'a>
Auto Trait Implementations§
impl<'a> Freeze for NormalizedMoveModuleQueryArgs<'a>
impl<'a> RefUnwindSafe for NormalizedMoveModuleQueryArgs<'a>
impl<'a> Send for NormalizedMoveModuleQueryArgs<'a>
impl<'a> Sync for NormalizedMoveModuleQueryArgs<'a>
impl<'a> Unpin for NormalizedMoveModuleQueryArgs<'a>
impl<'a> UnwindSafe for NormalizedMoveModuleQueryArgs<'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