pub struct ActionArtifact {
pub archive_download_url: Option<String>,
pub created_at: Option<String>,
pub expired: Option<bool>,
pub expires_at: Option<String>,
pub id: Option<f64>,
pub name: Option<String>,
pub size_in_bytes: Option<f64>,
pub updated_at: Option<String>,
pub url: Option<String>,
pub workflow_run: Option<ActionWorkflowRun>,
}Fields§
§archive_download_url: Option<String>§created_at: Option<String>§expired: Option<bool>§expires_at: Option<String>§id: Option<f64>§name: Option<String>§size_in_bytes: Option<f64>§updated_at: Option<String>§url: Option<String>§workflow_run: Option<ActionWorkflowRun>Trait Implementations§
Source§impl Clone for ActionArtifact
impl Clone for ActionArtifact
Source§fn clone(&self) -> ActionArtifact
fn clone(&self) -> ActionArtifact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionArtifact
impl Debug for ActionArtifact
Source§impl<'de> Deserialize<'de> for ActionArtifact
impl<'de> Deserialize<'de> for ActionArtifact
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
Auto Trait Implementations§
impl Freeze for ActionArtifact
impl RefUnwindSafe for ActionArtifact
impl Send for ActionArtifact
impl Sync for ActionArtifact
impl Unpin for ActionArtifact
impl UnsafeUnpin for ActionArtifact
impl UnwindSafe for ActionArtifact
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