pub struct Package {Show 19 fields
pub package_id: PackageId,
pub flow_inputs_dids: HashSet<ConstructDid>,
pub flow_inputs_did_lookup: HashMap<String, ConstructDid>,
pub variables_dids: HashSet<ConstructDid>,
pub variables_did_lookup: HashMap<String, ConstructDid>,
pub outputs_dids: HashSet<ConstructDid>,
pub outputs_did_lookup: HashMap<String, ConstructDid>,
pub modules_dids: HashSet<ConstructDid>,
pub modules_did_lookup: HashMap<String, ConstructDid>,
pub imports_dids: HashSet<ConstructDid>,
pub imports_did_lookup: HashMap<String, ConstructDid>,
pub commands_dids: HashSet<ConstructDid>,
pub commands_did_lookup: HashMap<String, ConstructDid>,
pub addons_dids: HashSet<ConstructDid>,
pub addons_did_lookup: HashMap<String, ConstructDid>,
pub signers_dids: HashSet<ConstructDid>,
pub signers_did_lookup: HashMap<String, ConstructDid>,
pub embedded_runbooks_dids: HashSet<ConstructDid>,
pub embedded_runbooks_did_lookup: HashMap<String, ConstructDid>,
}Fields§
§package_id: PackageIdId of the Package
flow_inputs_dids: HashSet<ConstructDid>§flow_inputs_did_lookup: HashMap<String, ConstructDid>§variables_dids: HashSet<ConstructDid>§variables_did_lookup: HashMap<String, ConstructDid>§outputs_dids: HashSet<ConstructDid>§outputs_did_lookup: HashMap<String, ConstructDid>§modules_dids: HashSet<ConstructDid>§modules_did_lookup: HashMap<String, ConstructDid>§imports_dids: HashSet<ConstructDid>§imports_did_lookup: HashMap<String, ConstructDid>§commands_dids: HashSet<ConstructDid>§commands_did_lookup: HashMap<String, ConstructDid>§addons_dids: HashSet<ConstructDid>§addons_did_lookup: HashMap<String, ConstructDid>§signers_dids: HashSet<ConstructDid>§signers_did_lookup: HashMap<String, ConstructDid>§embedded_runbooks_dids: HashSet<ConstructDid>§embedded_runbooks_did_lookup: HashMap<String, ConstructDid>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Package
impl<'de> Deserialize<'de> for Package
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
Auto Trait Implementations§
impl Freeze for Package
impl RefUnwindSafe for Package
impl Send for Package
impl Sync for Package
impl Unpin for Package
impl UnwindSafe for Package
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