pub struct RoutingConfigResponse {
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub state: Option<RoutingConfigState>,
pub activated_at: Option<String>,
pub links: Option<HashMap<String, String>>,
}Expand description
RoutingConfigResponse : All attributes for a routing config response.
Fields§
§created_at: Option<String>Date and time in ISO 8601 format.
updated_at: Option<String>Date and time in ISO 8601 format.
id: Option<String>Alphanumeric string identifying the routing config.
name: Option<String>The user-defined name for the routing config.
state: Option<RoutingConfigState>§activated_at: Option<String>Timestamp of when the version was most recently activated. null if the version has never been activated.
links: Option<HashMap<String, String>>HATEOAS links to related resources.
Implementations§
Source§impl RoutingConfigResponse
impl RoutingConfigResponse
Sourcepub fn new() -> RoutingConfigResponse
pub fn new() -> RoutingConfigResponse
All attributes for a routing config response.
Trait Implementations§
Source§impl Clone for RoutingConfigResponse
impl Clone for RoutingConfigResponse
Source§fn clone(&self) -> RoutingConfigResponse
fn clone(&self) -> RoutingConfigResponse
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 RoutingConfigResponse
impl Debug for RoutingConfigResponse
Source§impl Default for RoutingConfigResponse
impl Default for RoutingConfigResponse
Source§fn default() -> RoutingConfigResponse
fn default() -> RoutingConfigResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoutingConfigResponse
impl<'de> Deserialize<'de> for RoutingConfigResponse
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
Source§impl PartialEq for RoutingConfigResponse
impl PartialEq for RoutingConfigResponse
Source§impl Serialize for RoutingConfigResponse
impl Serialize for RoutingConfigResponse
impl StructuralPartialEq for RoutingConfigResponse
Auto Trait Implementations§
impl Freeze for RoutingConfigResponse
impl RefUnwindSafe for RoutingConfigResponse
impl Send for RoutingConfigResponse
impl Sync for RoutingConfigResponse
impl Unpin for RoutingConfigResponse
impl UnsafeUnpin for RoutingConfigResponse
impl UnwindSafe for RoutingConfigResponse
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