pub struct ListOriginEndpointsResponse {
pub next_token: Option<String>,
pub origin_endpoints: Option<Vec<OriginEndpoint>>,
}Fields§
§next_token: Option<String>A token that can be used to resume pagination from the end of the collection.
origin_endpoints: Option<Vec<OriginEndpoint>>A list of OriginEndpoint records.
Trait Implementations§
Source§impl Clone for ListOriginEndpointsResponse
impl Clone for ListOriginEndpointsResponse
Source§fn clone(&self) -> ListOriginEndpointsResponse
fn clone(&self) -> ListOriginEndpointsResponse
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 ListOriginEndpointsResponse
impl Debug for ListOriginEndpointsResponse
Source§impl Default for ListOriginEndpointsResponse
impl Default for ListOriginEndpointsResponse
Source§fn default() -> ListOriginEndpointsResponse
fn default() -> ListOriginEndpointsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListOriginEndpointsResponse
impl<'de> Deserialize<'de> for ListOriginEndpointsResponse
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
impl StructuralPartialEq for ListOriginEndpointsResponse
Auto Trait Implementations§
impl Freeze for ListOriginEndpointsResponse
impl RefUnwindSafe for ListOriginEndpointsResponse
impl Send for ListOriginEndpointsResponse
impl Sync for ListOriginEndpointsResponse
impl Unpin for ListOriginEndpointsResponse
impl UnwindSafe for ListOriginEndpointsResponse
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