pub struct EndpointRedirection {
pub source_endpoint_name: Option<String>,
pub target_endpoint_name: Option<String>,
pub source_endpoint_type: Option<EndpointTargetType>,
pub target_endpoint_type: Option<EndpointTargetType>,
pub error_message: Option<String>,
}Expand description
Details for one endpoint moved by a redirection operation.
Fields§
§source_endpoint_name: Option<String>Source endpoint name.
target_endpoint_name: Option<String>Target endpoint name.
source_endpoint_type: Option<EndpointTargetType>Source endpoint type.
target_endpoint_type: Option<EndpointTargetType>Target endpoint type.
error_message: Option<String>Endpoint-specific failure detail, when present.
Trait Implementations§
Source§impl Clone for EndpointRedirection
impl Clone for EndpointRedirection
Source§fn clone(&self) -> EndpointRedirection
fn clone(&self) -> EndpointRedirection
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 EndpointRedirection
impl Debug for EndpointRedirection
Source§impl<'de> Deserialize<'de> for EndpointRedirection
impl<'de> Deserialize<'de> for EndpointRedirection
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 EndpointRedirection
impl RefUnwindSafe for EndpointRedirection
impl Send for EndpointRedirection
impl Sync for EndpointRedirection
impl Unpin for EndpointRedirection
impl UnsafeUnpin for EndpointRedirection
impl UnwindSafe for EndpointRedirection
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