pub struct RunnerApplication {
pub os: String,
pub architecture: String,
pub download_url: String,
pub filename: String,
pub temp_download_token: Option<String>,
pub sha256_checksum: Option<String>,
}
Expand description
RunnerApplication : Runner Application
Fields§
§os: String
§architecture: String
§download_url: String
§filename: String
§temp_download_token: Option<String>
A short lived bearer token used to download the runner, if needed.
sha256_checksum: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for RunnerApplication
impl Clone for RunnerApplication
Source§fn clone(&self) -> RunnerApplication
fn clone(&self) -> RunnerApplication
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 RunnerApplication
impl Debug for RunnerApplication
Source§impl Default for RunnerApplication
impl Default for RunnerApplication
Source§fn default() -> RunnerApplication
fn default() -> RunnerApplication
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunnerApplication
impl<'de> Deserialize<'de> for RunnerApplication
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 RunnerApplication
impl PartialEq for RunnerApplication
Source§impl Serialize for RunnerApplication
impl Serialize for RunnerApplication
impl StructuralPartialEq for RunnerApplication
Auto Trait Implementations§
impl Freeze for RunnerApplication
impl RefUnwindSafe for RunnerApplication
impl Send for RunnerApplication
impl Sync for RunnerApplication
impl Unpin for RunnerApplication
impl UnwindSafe for RunnerApplication
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