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