pub struct DeployedContractsPaginatedResponse {
pub data: Vec<LeanDeployedContractResponseDto>,
pub next: Option<Option<String>>,
}
Fields§
§data: Vec<LeanDeployedContractResponseDto>
The data of the current page
next: Option<Option<String>>
The ID of the next page
Implementations§
Trait Implementations§
Source§impl Clone for DeployedContractsPaginatedResponse
impl Clone for DeployedContractsPaginatedResponse
Source§fn clone(&self) -> DeployedContractsPaginatedResponse
fn clone(&self) -> DeployedContractsPaginatedResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DeployedContractsPaginatedResponse
impl Default for DeployedContractsPaginatedResponse
Source§fn default() -> DeployedContractsPaginatedResponse
fn default() -> DeployedContractsPaginatedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployedContractsPaginatedResponse
impl<'de> Deserialize<'de> for DeployedContractsPaginatedResponse
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
Source§impl PartialEq for DeployedContractsPaginatedResponse
impl PartialEq for DeployedContractsPaginatedResponse
Source§fn eq(&self, other: &DeployedContractsPaginatedResponse) -> bool
fn eq(&self, other: &DeployedContractsPaginatedResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeployedContractsPaginatedResponse
Auto Trait Implementations§
impl Freeze for DeployedContractsPaginatedResponse
impl RefUnwindSafe for DeployedContractsPaginatedResponse
impl Send for DeployedContractsPaginatedResponse
impl Sync for DeployedContractsPaginatedResponse
impl Unpin for DeployedContractsPaginatedResponse
impl UnwindSafe for DeployedContractsPaginatedResponse
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