pub struct RestDescriptionEndpoints {
pub deprecated: Option<bool>,
pub description: Option<String>,
pub endpoint_url: Option<String>,
pub location: Option<String>,
}Expand description
A single endpoint object
This type is not used in any activity, and only used as part of another schema.
Fields§
§deprecated: Option<bool>Whether this endpoint is deprecated
description: Option<String>A string describing the host designated by the URL
endpoint_url: Option<String>The URL of the endpoint target host
location: Option<String>The location of the endpoint
Trait Implementations§
Source§impl Clone for RestDescriptionEndpoints
impl Clone for RestDescriptionEndpoints
Source§fn clone(&self) -> RestDescriptionEndpoints
fn clone(&self) -> RestDescriptionEndpoints
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 RestDescriptionEndpoints
impl Debug for RestDescriptionEndpoints
Source§impl Default for RestDescriptionEndpoints
impl Default for RestDescriptionEndpoints
Source§fn default() -> RestDescriptionEndpoints
fn default() -> RestDescriptionEndpoints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestDescriptionEndpoints
impl<'de> Deserialize<'de> for RestDescriptionEndpoints
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 NestedType for RestDescriptionEndpoints
impl Part for RestDescriptionEndpoints
Auto Trait Implementations§
impl Freeze for RestDescriptionEndpoints
impl RefUnwindSafe for RestDescriptionEndpoints
impl Send for RestDescriptionEndpoints
impl Sync for RestDescriptionEndpoints
impl Unpin for RestDescriptionEndpoints
impl UnsafeUnpin for RestDescriptionEndpoints
impl UnwindSafe for RestDescriptionEndpoints
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