pub struct SkillFleetPayload {
pub manifest_yaml: String,
pub events_jsonl: String,
pub content_sha256: String,
}Expand description
Combined fleet payload for one skill directory.
manifest_yaml: rawskill.yaml(synced via LWW oncontent_sha256).events_jsonl: rawevents.jsonlcontent (set-union merge on conflict).content_sha256: sha-256 ofmanifest_yaml.
Fields§
§manifest_yaml: String§events_jsonl: String§content_sha256: StringTrait Implementations§
Source§impl Clone for SkillFleetPayload
impl Clone for SkillFleetPayload
Source§fn clone(&self) -> SkillFleetPayload
fn clone(&self) -> SkillFleetPayload
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 SkillFleetPayload
impl Debug for SkillFleetPayload
Source§impl<'de> Deserialize<'de> for SkillFleetPayload
impl<'de> Deserialize<'de> for SkillFleetPayload
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 SkillFleetPayload
impl RefUnwindSafe for SkillFleetPayload
impl Send for SkillFleetPayload
impl Sync for SkillFleetPayload
impl Unpin for SkillFleetPayload
impl UnsafeUnpin for SkillFleetPayload
impl UnwindSafe for SkillFleetPayload
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