pub struct AppIdentity {
pub app_instance_id: String,
pub app_id: String,
pub pid: u32,
pub started_at: u64,
pub workspace_id: Option<String>,
pub workspace_path: Option<PathBuf>,
pub inspection_protocol_version: u64,
pub workflow_protocol_version: Option<u64>,
}Fields§
§app_instance_id: String§app_id: String§pid: u32§started_at: u64§workspace_id: Option<String>§workspace_path: Option<PathBuf>§inspection_protocol_version: u64§workflow_protocol_version: Option<u64>Implementations§
Trait Implementations§
Source§impl Clone for AppIdentity
impl Clone for AppIdentity
Source§fn clone(&self) -> AppIdentity
fn clone(&self) -> AppIdentity
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 AppIdentity
impl Debug for AppIdentity
Source§impl<'de> Deserialize<'de> for AppIdentity
impl<'de> Deserialize<'de> for AppIdentity
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 AppIdentity
Source§impl PartialEq for AppIdentity
impl PartialEq for AppIdentity
Source§impl Serialize for AppIdentity
impl Serialize for AppIdentity
impl StructuralPartialEq for AppIdentity
Auto Trait Implementations§
impl Freeze for AppIdentity
impl RefUnwindSafe for AppIdentity
impl Send for AppIdentity
impl Sync for AppIdentity
impl Unpin for AppIdentity
impl UnsafeUnpin for AppIdentity
impl UnwindSafe for AppIdentity
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