pub struct CompiledConstellation {
pub constellation_name: String,
pub target: DeploymentTarget,
pub skill_count: usize,
pub estimated_size_bytes: usize,
pub checksum: String,
}Expand description
A constellation compiled for a specific target.
Fields§
§constellation_name: String§target: DeploymentTarget§skill_count: usize§estimated_size_bytes: usize§checksum: StringTrait Implementations§
Source§impl Clone for CompiledConstellation
impl Clone for CompiledConstellation
Source§fn clone(&self) -> CompiledConstellation
fn clone(&self) -> CompiledConstellation
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 moreAuto Trait Implementations§
impl Freeze for CompiledConstellation
impl RefUnwindSafe for CompiledConstellation
impl Send for CompiledConstellation
impl Sync for CompiledConstellation
impl Unpin for CompiledConstellation
impl UnsafeUnpin for CompiledConstellation
impl UnwindSafe for CompiledConstellation
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