pub struct SyndromeRouteRecord {
pub schema_version: String,
pub route_id: RepairRouteId,
pub syndrome_id: SyndromeId,
pub region_id: RegionId,
pub candidate_id: RepairCandidateId,
pub repair_surface: String,
pub blast_radius_node_ids: Vec<String>,
pub witness_refs: Vec<String>,
pub routed_before_global_invalidation: bool,
}Expand description
Routing record linking a syndrome to a repair candidate and its blast radius.
Fields§
§schema_version: String§route_id: RepairRouteId§syndrome_id: SyndromeId§region_id: RegionId§candidate_id: RepairCandidateId§repair_surface: String§blast_radius_node_ids: Vec<String>§witness_refs: Vec<String>§routed_before_global_invalidation: boolImplementations§
Trait Implementations§
Source§impl Clone for SyndromeRouteRecord
impl Clone for SyndromeRouteRecord
Source§fn clone(&self) -> SyndromeRouteRecord
fn clone(&self) -> SyndromeRouteRecord
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 SyndromeRouteRecord
impl Debug for SyndromeRouteRecord
Source§impl<'de> Deserialize<'de> for SyndromeRouteRecord
impl<'de> Deserialize<'de> for SyndromeRouteRecord
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 SyndromeRouteRecord
Source§impl JsonSchema for SyndromeRouteRecord
impl JsonSchema for SyndromeRouteRecord
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SyndromeRouteRecord
impl PartialEq for SyndromeRouteRecord
Source§fn eq(&self, other: &SyndromeRouteRecord) -> bool
fn eq(&self, other: &SyndromeRouteRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SyndromeRouteRecord
impl Serialize for SyndromeRouteRecord
impl StructuralPartialEq for SyndromeRouteRecord
Auto Trait Implementations§
impl Freeze for SyndromeRouteRecord
impl RefUnwindSafe for SyndromeRouteRecord
impl Send for SyndromeRouteRecord
impl Sync for SyndromeRouteRecord
impl Unpin for SyndromeRouteRecord
impl UnsafeUnpin for SyndromeRouteRecord
impl UnwindSafe for SyndromeRouteRecord
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