pub struct QueryUserDelegationHistoryParams {
pub email: String,
pub start_time: i64,
pub end_time: i64,
pub type: Option<QueryUserDelegationHistoryTypeEnum>,
pub asset: Option<String>,
pub current: Option<i64>,
pub size: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_user_delegation_history] operation.
This struct holds all of the inputs you can pass when calling
query_user_delegation_history.
Fields§
§email: StringThe email parameter.
This field is **required.
start_time: i64The start_time parameter.
This field is **required.
end_time: i64The end_time parameter.
This field is **required.
type: Option<QueryUserDelegationHistoryTypeEnum>The r#type parameter.
This field is **optional.
asset: Option<String>The asset parameter.
This field is **optional.
current: Option<i64>The current parameter.
This field is **optional.
size: Option<i64>The size parameter.
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Trait Implementations§
Source§impl Clone for QueryUserDelegationHistoryParams
impl Clone for QueryUserDelegationHistoryParams
Source§fn clone(&self) -> QueryUserDelegationHistoryParams
fn clone(&self) -> QueryUserDelegationHistoryParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for QueryUserDelegationHistoryParams
impl<'de> Deserialize<'de> for QueryUserDelegationHistoryParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QueryUserDelegationHistoryParams
impl RefUnwindSafe for QueryUserDelegationHistoryParams
impl Send for QueryUserDelegationHistoryParams
impl Sync for QueryUserDelegationHistoryParams
impl Unpin for QueryUserDelegationHistoryParams
impl UnsafeUnpin for QueryUserDelegationHistoryParams
impl UnwindSafe for QueryUserDelegationHistoryParams
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