pub struct SyncTriggerResult {
pub store_id: String,
pub root: String,
pub status: String,
pub size_bytes: u64,
pub served_root: String,
}Expand description
control.sync.trigger — the synced-capsule outcome.
Fields§
§store_id: StringThe store id synced.
root: StringThe capsule root synced.
status: StringThe outcome status ("synced").
size_bytes: u64The synced capsule size, in bytes.
served_root: StringThe served root the node verified against.
Trait Implementations§
Source§impl Clone for SyncTriggerResult
impl Clone for SyncTriggerResult
Source§fn clone(&self) -> SyncTriggerResult
fn clone(&self) -> SyncTriggerResult
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 SyncTriggerResult
impl Debug for SyncTriggerResult
Source§impl<'de> Deserialize<'de> for SyncTriggerResult
impl<'de> Deserialize<'de> for SyncTriggerResult
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
impl Eq for SyncTriggerResult
Source§impl PartialEq for SyncTriggerResult
impl PartialEq for SyncTriggerResult
Source§impl Serialize for SyncTriggerResult
impl Serialize for SyncTriggerResult
impl StructuralPartialEq for SyncTriggerResult
Auto Trait Implementations§
impl Freeze for SyncTriggerResult
impl RefUnwindSafe for SyncTriggerResult
impl Send for SyncTriggerResult
impl Sync for SyncTriggerResult
impl Unpin for SyncTriggerResult
impl UnsafeUnpin for SyncTriggerResult
impl UnwindSafe for SyncTriggerResult
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