pub struct DropletsGetBackupPolicyResponsePolicyNextBackupWindow {
pub end: Option<DateTime<Utc>>,
pub start: Option<DateTime<Utc>>,
}Expand description
DropletsGetBackupPolicyResponsePolicyNextBackupWindow
JSON schema
{
"type": "object",
"properties": {
"end": {
"description": "A time value given in ISO8601 combined date and time format specifying the end of the Droplet's backup window.",
"examples": [
"2019-12-04T23:00:00Z"
],
"type": "string",
"format": "date-time"
},
"start": {
"description": "A time value given in ISO8601 combined date and time format specifying the start of the Droplet's backup window.",
"examples": [
"2019-12-04T00:00:00Z"
],
"type": "string",
"format": "date-time"
}
}
}Fields§
§end: Option<DateTime<Utc>>A time value given in ISO8601 combined date and time format specifying the end of the Droplet’s backup window.
start: Option<DateTime<Utc>>A time value given in ISO8601 combined date and time format specifying the start of the Droplet’s backup window.
Trait Implementations§
Source§impl Clone for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl Clone for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
Source§fn clone(&self) -> DropletsGetBackupPolicyResponsePolicyNextBackupWindow
fn clone(&self) -> DropletsGetBackupPolicyResponsePolicyNextBackupWindow
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<'de> Deserialize<'de> for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl<'de> Deserialize<'de> for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
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 From<&DropletsGetBackupPolicyResponsePolicyNextBackupWindow> for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl From<&DropletsGetBackupPolicyResponsePolicyNextBackupWindow> for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
Source§fn from(value: &DropletsGetBackupPolicyResponsePolicyNextBackupWindow) -> Self
fn from(value: &DropletsGetBackupPolicyResponsePolicyNextBackupWindow) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl RefUnwindSafe for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl Send for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl Sync for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl Unpin for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl UnsafeUnpin for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
impl UnwindSafe for DropletsGetBackupPolicyResponsePolicyNextBackupWindow
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