pub struct TransferTenantOwnershipResponse {
pub transferred: bool,
pub new_owner: String,
pub previous_owner: String,
}Expand description
TransferTenantOwnershipResponse model.
Fields§
§transferred: bool§new_owner: String§previous_owner: StringTrait Implementations§
Source§impl Clone for TransferTenantOwnershipResponse
impl Clone for TransferTenantOwnershipResponse
Source§fn clone(&self) -> TransferTenantOwnershipResponse
fn clone(&self) -> TransferTenantOwnershipResponse
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 Default for TransferTenantOwnershipResponse
impl Default for TransferTenantOwnershipResponse
Source§fn default() -> TransferTenantOwnershipResponse
fn default() -> TransferTenantOwnershipResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransferTenantOwnershipResponse
impl<'de> Deserialize<'de> for TransferTenantOwnershipResponse
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 TransferTenantOwnershipResponse
Auto Trait Implementations§
impl Freeze for TransferTenantOwnershipResponse
impl RefUnwindSafe for TransferTenantOwnershipResponse
impl Send for TransferTenantOwnershipResponse
impl Sync for TransferTenantOwnershipResponse
impl Unpin for TransferTenantOwnershipResponse
impl UnsafeUnpin for TransferTenantOwnershipResponse
impl UnwindSafe for TransferTenantOwnershipResponse
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