pub struct RosterInstallResult {
pub org_id: String,
pub serial: u64,
pub severed: u32,
}Expand description
Result of a Request::RosterInstall request (spec §4.3 manual path): the installed roster’s
org id + serial (roster-status vocabulary the confirmation line is permitted to render) plus how
many live sessions the install severed (D8). Surface-clean: NO keys / EndpointIds / paths.
Additive-only (§6.1): any future field MUST land as
#[serde(default, skip_serializing_if = ...)] so older payloads still deserialize.
Fields§
§org_id: String§serial: u64§severed: u32How many live sessions were severed (D8), for the porcelain’s confirmation line.
Trait Implementations§
Source§impl Clone for RosterInstallResult
impl Clone for RosterInstallResult
Source§fn clone(&self) -> RosterInstallResult
fn clone(&self) -> RosterInstallResult
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 RosterInstallResult
impl Debug for RosterInstallResult
Source§impl<'de> Deserialize<'de> for RosterInstallResult
impl<'de> Deserialize<'de> for RosterInstallResult
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 RosterInstallResult
Source§impl PartialEq for RosterInstallResult
impl PartialEq for RosterInstallResult
Source§impl Serialize for RosterInstallResult
impl Serialize for RosterInstallResult
impl StructuralPartialEq for RosterInstallResult
Auto Trait Implementations§
impl Freeze for RosterInstallResult
impl RefUnwindSafe for RosterInstallResult
impl Send for RosterInstallResult
impl Sync for RosterInstallResult
impl Unpin for RosterInstallResult
impl UnsafeUnpin for RosterInstallResult
impl UnwindSafe for RosterInstallResult
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