pub struct FavoriteCreateParameters {
pub artifact_id: Option<String>,
pub artifact_name: Option<String>,
pub artifact_properties: Option<ArtifactProperties>,
pub artifact_scope: Option<ArtifactScope>,
pub artifact_type: Option<String>,
}Fields§
§artifact_id: Option<String>§artifact_name: Option<String>§artifact_properties: Option<ArtifactProperties>§artifact_scope: Option<ArtifactScope>Describes the scope a favorited Artifact resides in. e.g. A team project.
artifact_type: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for FavoriteCreateParameters
impl Clone for FavoriteCreateParameters
Source§fn clone(&self) -> FavoriteCreateParameters
fn clone(&self) -> FavoriteCreateParameters
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 FavoriteCreateParameters
impl Debug for FavoriteCreateParameters
Source§impl Default for FavoriteCreateParameters
impl Default for FavoriteCreateParameters
Source§fn default() -> FavoriteCreateParameters
fn default() -> FavoriteCreateParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FavoriteCreateParameters
impl<'de> Deserialize<'de> for FavoriteCreateParameters
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 FavoriteCreateParameters
impl PartialEq for FavoriteCreateParameters
Source§impl Serialize for FavoriteCreateParameters
impl Serialize for FavoriteCreateParameters
impl StructuralPartialEq for FavoriteCreateParameters
Auto Trait Implementations§
impl Freeze for FavoriteCreateParameters
impl RefUnwindSafe for FavoriteCreateParameters
impl Send for FavoriteCreateParameters
impl Sync for FavoriteCreateParameters
impl Unpin for FavoriteCreateParameters
impl UnwindSafe for FavoriteCreateParameters
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