#[non_exhaustive]pub struct Override {
pub created: OffsetDateTime,
pub modified: Option<OffsetDateTime>,
pub name: String,
pub properties: HashMap<String, String>,
pub satellite_details: Option<SatelliteDetails>,
pub configuration_details: Option<ConfigurationDetails>,
pub links: HashMap<String, Url>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.created: OffsetDateTime§modified: Option<OffsetDateTime>§name: String§properties: HashMap<String, String>§satellite_details: Option<SatelliteDetails>The satellite configuration details associated with the override
configuration_details: Option<ConfigurationDetails>The site configuration details associated with the override
links: HashMap<String, Url>Trait Implementations§
impl StructuralPartialEq for Override
Auto Trait Implementations§
impl Freeze for Override
impl RefUnwindSafe for Override
impl Send for Override
impl Sync for Override
impl Unpin for Override
impl UnsafeUnpin for Override
impl UnwindSafe for Override
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