pub struct GetEndpointsRequest {
pub request_header: RequestHeader,
pub endpoint_url: String,
pub locale_ids: Vec<String>,
pub profile_uris: Vec<String>,
}Expand description
GetEndpointsRequest.
Fields§
§request_header: RequestHeaderCommon request header.
endpoint_url: StringEndpoint URL the client used.
locale_ids: Vec<String>Preferred locales.
profile_uris: Vec<String>Transport profile URIs filter (empty = all).
Trait Implementations§
Source§impl Clone for GetEndpointsRequest
impl Clone for GetEndpointsRequest
Source§fn clone(&self) -> GetEndpointsRequest
fn clone(&self) -> GetEndpointsRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetEndpointsRequest
impl Debug for GetEndpointsRequest
Source§impl PartialEq for GetEndpointsRequest
impl PartialEq for GetEndpointsRequest
Source§fn eq(&self, other: &GetEndpointsRequest) -> bool
fn eq(&self, other: &GetEndpointsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetEndpointsRequest
Auto Trait Implementations§
impl Freeze for GetEndpointsRequest
impl RefUnwindSafe for GetEndpointsRequest
impl Send for GetEndpointsRequest
impl Sync for GetEndpointsRequest
impl Unpin for GetEndpointsRequest
impl UnsafeUnpin for GetEndpointsRequest
impl UnwindSafe for GetEndpointsRequest
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