Struct fuel_core_client::client::schema::message::OwnedMessagesConnectionArgs
source · pub struct OwnedMessagesConnectionArgs {
pub owner: Option<Address>,
pub after: Option<String>,
pub before: Option<String>,
pub first: Option<i32>,
pub last: Option<i32>,
}
Fields§
§owner: Option<Address>
Filter messages based on an owner
after: Option<String>
Skip until coin id (forward pagination)
before: Option<String>
Skip until coin id (backward pagination)
first: Option<i32>
Retrieve the first n coins in order (forward pagination)
last: Option<i32>
Retrieve the last n coins in order (backward pagination).
Can’t be used at the same time as first
.
Trait Implementations§
source§impl Debug for OwnedMessagesConnectionArgs
impl Debug for OwnedMessagesConnectionArgs
source§impl From<(Option<Address>, PaginationRequest<String>)> for OwnedMessagesConnectionArgs
impl From<(Option<Address>, PaginationRequest<String>)> for OwnedMessagesConnectionArgs
source§impl QueryVariables for OwnedMessagesConnectionArgs
impl QueryVariables for OwnedMessagesConnectionArgs
§type Fields = OwnedMessagesConnectionArgsFields
type Fields = OwnedMessagesConnectionArgsFields
A struct that determines which variables are available when using this struct.
impl VariableMatch<OwnedMessagesConnectionArgs> for OwnedMessagesConnectionArgs
Auto Trait Implementations§
impl RefUnwindSafe for OwnedMessagesConnectionArgs
impl Send for OwnedMessagesConnectionArgs
impl Sync for OwnedMessagesConnectionArgs
impl Unpin for OwnedMessagesConnectionArgs
impl UnwindSafe for OwnedMessagesConnectionArgs
Blanket Implementations§
§impl<T> AnyDebug for Twhere
T: Any + Debug,
impl<T> AnyDebug for Twhere T: Any + Debug,
§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns a reference to the underlying type as
Any
.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