pub struct LocalInventoryRequest {
pub deployment_name: String,
pub network: String,
pub workspace_root: PathBuf,
pub icp_root: PathBuf,
pub config_path: Option<PathBuf>,
pub observed_at: String,
}Expand description
LocalInventoryRequest
Fields§
§deployment_name: String§network: String§workspace_root: PathBuf§icp_root: PathBuf§config_path: Option<PathBuf>§observed_at: StringTrait Implementations§
Source§impl Clone for LocalInventoryRequest
impl Clone for LocalInventoryRequest
Source§fn clone(&self) -> LocalInventoryRequest
fn clone(&self) -> LocalInventoryRequest
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 LocalInventoryRequest
impl Debug for LocalInventoryRequest
Source§impl PartialEq for LocalInventoryRequest
impl PartialEq for LocalInventoryRequest
Source§fn eq(&self, other: &LocalInventoryRequest) -> bool
fn eq(&self, other: &LocalInventoryRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LocalInventoryRequest
impl StructuralPartialEq for LocalInventoryRequest
Auto Trait Implementations§
impl Freeze for LocalInventoryRequest
impl RefUnwindSafe for LocalInventoryRequest
impl Send for LocalInventoryRequest
impl Sync for LocalInventoryRequest
impl Unpin for LocalInventoryRequest
impl UnsafeUnpin for LocalInventoryRequest
impl UnwindSafe for LocalInventoryRequest
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