pub struct RunView {
pub id: Option<String>,
pub name: Option<String>,
pub shape: Option<String>,
pub status: Option<String>,
pub url: Option<String>,
}Fields§
§id: Option<String>ID is the application id the run created or converged.
name: Option<String>Name is the run’s name, as stored.
shape: Option<String>Shape is the compute size label the request asked for, or "auto".
status: Option<String>Status is the application’s state — deploying on a fresh accept.
url: Option<String>URL is the run’s live HTTPS address.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunView
impl<'de> Deserialize<'de> for RunView
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
impl StructuralPartialEq for RunView
Auto Trait Implementations§
impl Freeze for RunView
impl RefUnwindSafe for RunView
impl Send for RunView
impl Sync for RunView
impl Unpin for RunView
impl UnsafeUnpin for RunView
impl UnwindSafe for RunView
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