pub struct FleetSnapshotMember {
pub id: String,
pub role: String,
pub route: FrozenRoute,
pub requested_reasoning: RequestedReasoning,
pub permissions: PermissionCeiling,
}Expand description
One member as frozen into the snapshot.
Fields§
§id: String§role: String§route: FrozenRouteThe exact route, frozen before any reasoning resolution.
requested_reasoning: RequestedReasoningThe reasoning policy the member requested (not the effective tier — that is resolved per run and recorded on the receipt).
permissions: PermissionCeilingTrait Implementations§
Source§impl Clone for FleetSnapshotMember
impl Clone for FleetSnapshotMember
Source§fn clone(&self) -> FleetSnapshotMember
fn clone(&self) -> FleetSnapshotMember
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 FleetSnapshotMember
impl Debug for FleetSnapshotMember
Source§impl<'de> Deserialize<'de> for FleetSnapshotMember
impl<'de> Deserialize<'de> for FleetSnapshotMember
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 FleetSnapshotMember
Source§impl PartialEq for FleetSnapshotMember
impl PartialEq for FleetSnapshotMember
Source§impl Serialize for FleetSnapshotMember
impl Serialize for FleetSnapshotMember
impl StructuralPartialEq for FleetSnapshotMember
Auto Trait Implementations§
impl Freeze for FleetSnapshotMember
impl RefUnwindSafe for FleetSnapshotMember
impl Send for FleetSnapshotMember
impl Sync for FleetSnapshotMember
impl Unpin for FleetSnapshotMember
impl UnsafeUnpin for FleetSnapshotMember
impl UnwindSafe for FleetSnapshotMember
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