pub struct RoutingConfigResponseAllOf {
pub id: Option<String>,
pub name: Option<String>,
pub state: Option<RoutingConfigState>,
pub activated_at: Option<String>,
pub links: Option<HashMap<String, String>>,
}Fields§
§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 RoutingConfigResponseAllOf
impl RoutingConfigResponseAllOf
pub fn new() -> RoutingConfigResponseAllOf
Trait Implementations§
Source§impl Clone for RoutingConfigResponseAllOf
impl Clone for RoutingConfigResponseAllOf
Source§fn clone(&self) -> RoutingConfigResponseAllOf
fn clone(&self) -> RoutingConfigResponseAllOf
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 RoutingConfigResponseAllOf
impl Debug for RoutingConfigResponseAllOf
Source§impl Default for RoutingConfigResponseAllOf
impl Default for RoutingConfigResponseAllOf
Source§fn default() -> RoutingConfigResponseAllOf
fn default() -> RoutingConfigResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoutingConfigResponseAllOf
impl<'de> Deserialize<'de> for RoutingConfigResponseAllOf
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 StructuralPartialEq for RoutingConfigResponseAllOf
Auto Trait Implementations§
impl Freeze for RoutingConfigResponseAllOf
impl RefUnwindSafe for RoutingConfigResponseAllOf
impl Send for RoutingConfigResponseAllOf
impl Sync for RoutingConfigResponseAllOf
impl Unpin for RoutingConfigResponseAllOf
impl UnsafeUnpin for RoutingConfigResponseAllOf
impl UnwindSafe for RoutingConfigResponseAllOf
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