pub struct ArtifactDetails {
pub maximum_count: i64,
pub minimum_count: i64,
}
Expand description
Returns information about the details of an artifact.
Fields§
§maximum_count: i64
The maximum number of artifacts allowed for the action type.
minimum_count: i64
The minimum number of artifacts allowed for the action type.
Trait Implementations§
Source§impl Clone for ArtifactDetails
impl Clone for ArtifactDetails
Source§fn clone(&self) -> ArtifactDetails
fn clone(&self) -> ArtifactDetails
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 ArtifactDetails
impl Debug for ArtifactDetails
Source§impl Default for ArtifactDetails
impl Default for ArtifactDetails
Source§fn default() -> ArtifactDetails
fn default() -> ArtifactDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArtifactDetails
impl<'de> Deserialize<'de> for ArtifactDetails
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 ArtifactDetails
impl PartialEq for ArtifactDetails
Source§impl Serialize for ArtifactDetails
impl Serialize for ArtifactDetails
impl StructuralPartialEq for ArtifactDetails
Auto Trait Implementations§
impl Freeze for ArtifactDetails
impl RefUnwindSafe for ArtifactDetails
impl Send for ArtifactDetails
impl Sync for ArtifactDetails
impl Unpin for ArtifactDetails
impl UnwindSafe for ArtifactDetails
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