pub struct AttemptResumeStartResponse {Show 15 fields
pub ok: bool,
pub resume_id: String,
pub run_id: String,
pub activity_id: String,
pub attempt_id: String,
pub session_id: String,
pub original_session_id: String,
pub cli_session_id: Option<String>,
pub web_port: Option<u16>,
pub write_token: Option<String>,
pub url: Option<String>,
pub already_running: bool,
pub started_at: u64,
pub log_path: String,
pub sidecar_path: String,
}Fields§
§ok: bool§resume_id: String§run_id: String§activity_id: String§attempt_id: String§session_id: String§original_session_id: String§cli_session_id: Option<String>§web_port: Option<u16>§write_token: Option<String>§url: Option<String>§already_running: bool§started_at: u64§log_path: String§sidecar_path: StringTrait Implementations§
Source§impl Clone for AttemptResumeStartResponse
impl Clone for AttemptResumeStartResponse
Source§fn clone(&self) -> AttemptResumeStartResponse
fn clone(&self) -> AttemptResumeStartResponse
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 AttemptResumeStartResponse
impl Debug for AttemptResumeStartResponse
Source§impl<'de> Deserialize<'de> for AttemptResumeStartResponse
impl<'de> Deserialize<'de> for AttemptResumeStartResponse
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 Eq for AttemptResumeStartResponse
Source§impl PartialEq for AttemptResumeStartResponse
impl PartialEq for AttemptResumeStartResponse
Source§fn eq(&self, other: &AttemptResumeStartResponse) -> bool
fn eq(&self, other: &AttemptResumeStartResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttemptResumeStartResponse
Auto Trait Implementations§
impl Freeze for AttemptResumeStartResponse
impl RefUnwindSafe for AttemptResumeStartResponse
impl Send for AttemptResumeStartResponse
impl Sync for AttemptResumeStartResponse
impl Unpin for AttemptResumeStartResponse
impl UnsafeUnpin for AttemptResumeStartResponse
impl UnwindSafe for AttemptResumeStartResponse
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