pub struct ListBlockchainsResponse {
pub data: Vec<BlockchainResponse>,
pub next: Option<String>,
}
Fields§
§data: Vec<BlockchainResponse>
The data of the current page
next: Option<String>
Cursor to the next page
Implementations§
Source§impl ListBlockchainsResponse
impl ListBlockchainsResponse
pub fn new( data: Vec<BlockchainResponse>, next: Option<String>, ) -> ListBlockchainsResponse
Trait Implementations§
Source§impl Clone for ListBlockchainsResponse
impl Clone for ListBlockchainsResponse
Source§fn clone(&self) -> ListBlockchainsResponse
fn clone(&self) -> ListBlockchainsResponse
Returns a copy 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 Debug for ListBlockchainsResponse
impl Debug for ListBlockchainsResponse
Source§impl Default for ListBlockchainsResponse
impl Default for ListBlockchainsResponse
Source§fn default() -> ListBlockchainsResponse
fn default() -> ListBlockchainsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBlockchainsResponse
impl<'de> Deserialize<'de> for ListBlockchainsResponse
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 ListBlockchainsResponse
impl PartialEq for ListBlockchainsResponse
Source§impl Serialize for ListBlockchainsResponse
impl Serialize for ListBlockchainsResponse
impl StructuralPartialEq for ListBlockchainsResponse
Auto Trait Implementations§
impl Freeze for ListBlockchainsResponse
impl RefUnwindSafe for ListBlockchainsResponse
impl Send for ListBlockchainsResponse
impl Sync for ListBlockchainsResponse
impl Unpin for ListBlockchainsResponse
impl UnwindSafe for ListBlockchainsResponse
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