pub struct BridgeInstalledSpec {
pub spec_id: String,
pub version: Option<String>,
pub tools: Option<Vec<String>>,
pub status: BridgeInstalledSpecStatus,
pub error: Option<String>,
pub reported_at: Option<String>,
}Expand description
BridgeInstalledSpec model.
Fields§
§spec_id: String@scope/name.
version: Option<String>Resolved exactly, never a range.
tools: Option<Vec<String>>Tool names the SPEC registered into the local runtime.
status: BridgeInstalledSpecStatus§error: Option<String>Failure detail when status is failed — artifact 404, SHA mismatch, capability conflict.
reported_at: Option<String>Trait Implementations§
Source§impl Clone for BridgeInstalledSpec
impl Clone for BridgeInstalledSpec
Source§fn clone(&self) -> BridgeInstalledSpec
fn clone(&self) -> BridgeInstalledSpec
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 BridgeInstalledSpec
impl Debug for BridgeInstalledSpec
Source§impl Default for BridgeInstalledSpec
impl Default for BridgeInstalledSpec
Source§fn default() -> BridgeInstalledSpec
fn default() -> BridgeInstalledSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BridgeInstalledSpec
impl<'de> Deserialize<'de> for BridgeInstalledSpec
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
Source§impl PartialEq for BridgeInstalledSpec
impl PartialEq for BridgeInstalledSpec
Source§impl Serialize for BridgeInstalledSpec
impl Serialize for BridgeInstalledSpec
impl StructuralPartialEq for BridgeInstalledSpec
Auto Trait Implementations§
impl Freeze for BridgeInstalledSpec
impl RefUnwindSafe for BridgeInstalledSpec
impl Send for BridgeInstalledSpec
impl Sync for BridgeInstalledSpec
impl Unpin for BridgeInstalledSpec
impl UnsafeUnpin for BridgeInstalledSpec
impl UnwindSafe for BridgeInstalledSpec
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