pub struct LxcUpdateAliasResponse {
pub data: Option<Value>,
pub total: Option<i32>,
pub changes: Option<Value>,
}Fields§
§data: Option<Value>§total: Option<i32>Optional total count, present for paginated list responses.
changes: Option<Value>Optional change summary returned by some PUT operations (one entry per modified field).
Implementations§
Source§impl LxcUpdateAliasResponse
impl LxcUpdateAliasResponse
pub fn new(data: Option<Value>) -> LxcUpdateAliasResponse
Trait Implementations§
Source§impl Clone for LxcUpdateAliasResponse
impl Clone for LxcUpdateAliasResponse
Source§fn clone(&self) -> LxcUpdateAliasResponse
fn clone(&self) -> LxcUpdateAliasResponse
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 LxcUpdateAliasResponse
impl Debug for LxcUpdateAliasResponse
Source§impl Default for LxcUpdateAliasResponse
impl Default for LxcUpdateAliasResponse
Source§fn default() -> LxcUpdateAliasResponse
fn default() -> LxcUpdateAliasResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LxcUpdateAliasResponse
impl<'de> Deserialize<'de> for LxcUpdateAliasResponse
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 PartialEq for LxcUpdateAliasResponse
impl PartialEq for LxcUpdateAliasResponse
Source§fn eq(&self, other: &LxcUpdateAliasResponse) -> bool
fn eq(&self, other: &LxcUpdateAliasResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LxcUpdateAliasResponse
impl Serialize for LxcUpdateAliasResponse
impl StructuralPartialEq for LxcUpdateAliasResponse
Auto Trait Implementations§
impl Freeze for LxcUpdateAliasResponse
impl RefUnwindSafe for LxcUpdateAliasResponse
impl Send for LxcUpdateAliasResponse
impl Sync for LxcUpdateAliasResponse
impl Unpin for LxcUpdateAliasResponse
impl UnsafeUnpin for LxcUpdateAliasResponse
impl UnwindSafe for LxcUpdateAliasResponse
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