pub struct WorkflowDispatchSession {
pub session_id: String,
pub bot_name: String,
pub started_at: u64,
pub ended_at: Option<u64>,
pub cli_session_id: Option<String>,
pub lark_app_id: Option<String>,
pub cli_id: Option<String>,
pub working_dir: Option<String>,
pub web_port: Option<u16>,
pub log_path: Option<String>,
}Fields§
§session_id: String§bot_name: String§started_at: u64§ended_at: Option<u64>§cli_session_id: Option<String>§lark_app_id: Option<String>§cli_id: Option<String>§working_dir: Option<String>§web_port: Option<u16>§log_path: Option<String>Trait Implementations§
Source§impl Clone for WorkflowDispatchSession
impl Clone for WorkflowDispatchSession
Source§fn clone(&self) -> WorkflowDispatchSession
fn clone(&self) -> WorkflowDispatchSession
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 WorkflowDispatchSession
impl Debug for WorkflowDispatchSession
impl Eq for WorkflowDispatchSession
Source§impl PartialEq for WorkflowDispatchSession
impl PartialEq for WorkflowDispatchSession
Source§fn eq(&self, other: &WorkflowDispatchSession) -> bool
fn eq(&self, other: &WorkflowDispatchSession) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WorkflowDispatchSession
Auto Trait Implementations§
impl Freeze for WorkflowDispatchSession
impl RefUnwindSafe for WorkflowDispatchSession
impl Send for WorkflowDispatchSession
impl Sync for WorkflowDispatchSession
impl Unpin for WorkflowDispatchSession
impl UnsafeUnpin for WorkflowDispatchSession
impl UnwindSafe for WorkflowDispatchSession
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