pub struct SporeCapsule {
pub uri: String,
pub core: SporeCore,
pub core_signature: String,
pub dist: Vec<SporeDist>,
}Expand description
Spore capsule containing uri, core, core_signature, and distribution info
Fields§
§uri: String§core: SporeCore§core_signature: String§dist: Vec<SporeDist>Trait Implementations§
Source§impl Clone for SporeCapsule
impl Clone for SporeCapsule
Source§fn clone(&self) -> SporeCapsule
fn clone(&self) -> SporeCapsule
Returns a duplicate of the value. Read more
1.0.0 · 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 SporeCapsule
impl Debug for SporeCapsule
Source§impl<'de> Deserialize<'de> for SporeCapsule
impl<'de> Deserialize<'de> for SporeCapsule
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 SporeCapsule
impl RefUnwindSafe for SporeCapsule
impl Send for SporeCapsule
impl Sync for SporeCapsule
impl Unpin for SporeCapsule
impl UnsafeUnpin for SporeCapsule
impl UnwindSafe for SporeCapsule
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