pub struct CreateEndpointResponse {
pub data: SingleEndpoint,
pub error: Option<String>,
}Expand description
Response from create_endpoint.
Fields§
§data: SingleEndpointThe newly created endpoint.
error: Option<String>Error message when the request did not succeed.
Trait Implementations§
Source§impl Clone for CreateEndpointResponse
impl Clone for CreateEndpointResponse
Source§fn clone(&self) -> CreateEndpointResponse
fn clone(&self) -> CreateEndpointResponse
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 CreateEndpointResponse
impl Debug for CreateEndpointResponse
Source§impl<'de> Deserialize<'de> for CreateEndpointResponse
impl<'de> Deserialize<'de> for CreateEndpointResponse
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 CreateEndpointResponse
impl RefUnwindSafe for CreateEndpointResponse
impl Send for CreateEndpointResponse
impl Sync for CreateEndpointResponse
impl Unpin for CreateEndpointResponse
impl UnsafeUnpin for CreateEndpointResponse
impl UnwindSafe for CreateEndpointResponse
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