pub struct QuotaUsedArtifact {
pub html_url: Option<Url>,
pub name: Option<String>,
pub size: Option<i64>,
}Expand description
QuotaUsedArtifact represents an artifact counting towards a user’s quota
Fields§
§html_url: Option<Url>HTML URL to the action run containing the artifact
name: Option<String>Name of the artifact
size: Option<i64>Size of the artifact (compressed)
Trait Implementations§
Source§impl Clone for QuotaUsedArtifact
impl Clone for QuotaUsedArtifact
Source§fn clone(&self) -> QuotaUsedArtifact
fn clone(&self) -> QuotaUsedArtifact
Returns a duplicate 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 QuotaUsedArtifact
impl Debug for QuotaUsedArtifact
Source§impl<'de> Deserialize<'de> for QuotaUsedArtifact
impl<'de> Deserialize<'de> for QuotaUsedArtifact
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 FromResponse for QuotaUsedArtifact
impl FromResponse for QuotaUsedArtifact
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
Source§impl PartialEq for QuotaUsedArtifact
impl PartialEq for QuotaUsedArtifact
Source§impl Serialize for QuotaUsedArtifact
impl Serialize for QuotaUsedArtifact
impl StructuralPartialEq for QuotaUsedArtifact
Auto Trait Implementations§
impl Freeze for QuotaUsedArtifact
impl RefUnwindSafe for QuotaUsedArtifact
impl Send for QuotaUsedArtifact
impl Sync for QuotaUsedArtifact
impl Unpin for QuotaUsedArtifact
impl UnwindSafe for QuotaUsedArtifact
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