pub struct RpcMaintenanceWindowsRequest {
pub account_id: AccountId,
}
Expand description
RpcMaintenanceWindowsRequest
JSON schema
{
"title": "RpcMaintenanceWindowsRequest",
"type": "object",
"required": [
"account_id"
],
"properties": {
"account_id": {
"$ref": "#/components/schemas/AccountId"
}
}
}
Fields§
§account_id: AccountId
Trait Implementations§
Source§impl Clone for RpcMaintenanceWindowsRequest
impl Clone for RpcMaintenanceWindowsRequest
Source§fn clone(&self) -> RpcMaintenanceWindowsRequest
fn clone(&self) -> RpcMaintenanceWindowsRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 RpcMaintenanceWindowsRequest
impl Debug for RpcMaintenanceWindowsRequest
Source§impl<'de> Deserialize<'de> for RpcMaintenanceWindowsRequest
impl<'de> Deserialize<'de> for RpcMaintenanceWindowsRequest
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<&RpcMaintenanceWindowsRequest> for RpcMaintenanceWindowsRequest
impl From<&RpcMaintenanceWindowsRequest> for RpcMaintenanceWindowsRequest
Source§fn from(value: &RpcMaintenanceWindowsRequest) -> Self
fn from(value: &RpcMaintenanceWindowsRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RpcMaintenanceWindowsRequest
impl RefUnwindSafe for RpcMaintenanceWindowsRequest
impl Send for RpcMaintenanceWindowsRequest
impl Sync for RpcMaintenanceWindowsRequest
impl Unpin for RpcMaintenanceWindowsRequest
impl UnwindSafe for RpcMaintenanceWindowsRequest
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