pub struct EndpointList {
pub endpoints: Vec<Endpoint>,
pub uri: String,
pub next_page_uri: Option<String>,
}
Fields§
§endpoints: Vec<Endpoint>
the list of all active endpoints on this account
uri: String
URI of the endpoints list API resource
next_page_uri: Option<String>
URI of the next page, or null if there is no next page
Trait Implementations§
Source§impl Clone for EndpointList
impl Clone for EndpointList
Source§fn clone(&self) -> EndpointList
fn clone(&self) -> EndpointList
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 Debug for EndpointList
impl Debug for EndpointList
Source§impl Default for EndpointList
impl Default for EndpointList
Source§fn default() -> EndpointList
fn default() -> EndpointList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointList
impl<'de> Deserialize<'de> for EndpointList
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 EndpointList
impl RefUnwindSafe for EndpointList
impl Send for EndpointList
impl Sync for EndpointList
impl Unpin for EndpointList
impl UnwindSafe for EndpointList
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