pub struct PaginatedAddressResponsePaging {
pub before: Option<String>,
pub after: Option<String>,
}Fields§
§before: Option<String>A string representing a cursor. Users can use this with a new request to this API endpoint as the “before” request parameter to fetch the previous page of results.
after: Option<String>A string representing a cursor. Users can use this with a new request to this API endpoint as the “after” request parameter to fetch the next page of results.
Implementations§
Trait Implementations§
Source§impl Clone for PaginatedAddressResponsePaging
impl Clone for PaginatedAddressResponsePaging
Source§fn clone(&self) -> PaginatedAddressResponsePaging
fn clone(&self) -> PaginatedAddressResponsePaging
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 PaginatedAddressResponsePaging
impl Default for PaginatedAddressResponsePaging
Source§fn default() -> PaginatedAddressResponsePaging
fn default() -> PaginatedAddressResponsePaging
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedAddressResponsePaging
impl<'de> Deserialize<'de> for PaginatedAddressResponsePaging
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 PaginatedAddressResponsePaging
impl PartialEq for PaginatedAddressResponsePaging
Source§fn eq(&self, other: &PaginatedAddressResponsePaging) -> bool
fn eq(&self, other: &PaginatedAddressResponsePaging) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaginatedAddressResponsePaging
Auto Trait Implementations§
impl Freeze for PaginatedAddressResponsePaging
impl RefUnwindSafe for PaginatedAddressResponsePaging
impl Send for PaginatedAddressResponsePaging
impl Sync for PaginatedAddressResponsePaging
impl Unpin for PaginatedAddressResponsePaging
impl UnwindSafe for PaginatedAddressResponsePaging
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