Struct azure_devops_rust_api::release::models::FavoriteItem
source · pub struct FavoriteItem {
pub data: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub type_: Option<String>,
}Expand description
Class to represent favorite entry.
Fields§
§data: Option<String>Application specific data for the entry.
id: Option<String>Unique Id of the the entry.
name: Option<String>Display text for favorite entry.
type_: Option<String>Application specific favorite entry type. Empty or Null represents that Favorite item is a Folder.
Implementations§
source§impl FavoriteItem
impl FavoriteItem
Trait Implementations§
source§impl Clone for FavoriteItem
impl Clone for FavoriteItem
source§fn clone(&self) -> FavoriteItem
fn clone(&self) -> FavoriteItem
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 FavoriteItem
impl Debug for FavoriteItem
source§impl Default for FavoriteItem
impl Default for FavoriteItem
source§fn default() -> FavoriteItem
fn default() -> FavoriteItem
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FavoriteItem
impl<'de> Deserialize<'de> for FavoriteItem
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<FavoriteItem> for FavoriteItem
impl PartialEq<FavoriteItem> for FavoriteItem
source§fn eq(&self, other: &FavoriteItem) -> bool
fn eq(&self, other: &FavoriteItem) -> bool
This method tests for
self and other values to be equal, and is used
by ==.