pub struct HTTPSEdgeList {
pub https_edges: Vec<HTTPSEdge>,
pub uri: String,
pub next_page_uri: Option<String>,
}
Fields§
§https_edges: Vec<HTTPSEdge>
the list of all HTTPS Edges on this account
uri: String
URI of the HTTPS Edge 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 HTTPSEdgeList
impl Clone for HTTPSEdgeList
Source§fn clone(&self) -> HTTPSEdgeList
fn clone(&self) -> HTTPSEdgeList
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 HTTPSEdgeList
impl Debug for HTTPSEdgeList
Source§impl Default for HTTPSEdgeList
impl Default for HTTPSEdgeList
Source§fn default() -> HTTPSEdgeList
fn default() -> HTTPSEdgeList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HTTPSEdgeList
impl<'de> Deserialize<'de> for HTTPSEdgeList
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 HTTPSEdgeList
impl RefUnwindSafe for HTTPSEdgeList
impl Send for HTTPSEdgeList
impl Sync for HTTPSEdgeList
impl Unpin for HTTPSEdgeList
impl UnwindSafe for HTTPSEdgeList
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