Struct azure_devops_rust_api::profile::models::AttributesContainer
source · pub struct AttributesContainer {
pub attributes: Option<Value>,
pub container_name: Option<String>,
pub revision: Option<i32>,
}Expand description
Stores a set of named profile attributes.
Fields§
§attributes: Option<Value>The attributes stored by the container.
container_name: Option<String>The name of the container.
revision: Option<i32>The maximum revision number of any attribute within the container.
Implementations§
Trait Implementations§
source§impl Clone for AttributesContainer
impl Clone for AttributesContainer
source§fn clone(&self) -> AttributesContainer
fn clone(&self) -> AttributesContainer
Returns a copy 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 AttributesContainer
impl Debug for AttributesContainer
source§impl Default for AttributesContainer
impl Default for AttributesContainer
source§fn default() -> AttributesContainer
fn default() -> AttributesContainer
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AttributesContainer
impl<'de> Deserialize<'de> for AttributesContainer
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 AttributesContainer
impl PartialEq for AttributesContainer
source§fn eq(&self, other: &AttributesContainer) -> bool
fn eq(&self, other: &AttributesContainer) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for AttributesContainer
impl Serialize for AttributesContainer
impl StructuralPartialEq for AttributesContainer
Auto Trait Implementations§
impl RefUnwindSafe for AttributesContainer
impl Send for AttributesContainer
impl Sync for AttributesContainer
impl Unpin for AttributesContainer
impl UnwindSafe for AttributesContainer
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