pub struct PlannerIdentity {
pub name: String,
pub version: String,
pub backend: String,
pub backend_version: Option<String>,
pub extensions: BTreeMap<String, Value>,
}Expand description
Planner and backend identity behind a completeness claim.
Fields§
§name: String§version: String§backend: String§backend_version: Option<String>§extensions: BTreeMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for PlannerIdentity
impl Clone for PlannerIdentity
Source§fn clone(&self) -> PlannerIdentity
fn clone(&self) -> PlannerIdentity
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 PlannerIdentity
impl Debug for PlannerIdentity
Source§impl<'de> Deserialize<'de> for PlannerIdentity
impl<'de> Deserialize<'de> for PlannerIdentity
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
Source§impl PartialEq for PlannerIdentity
impl PartialEq for PlannerIdentity
Source§impl Serialize for PlannerIdentity
impl Serialize for PlannerIdentity
impl StructuralPartialEq for PlannerIdentity
Auto Trait Implementations§
impl Freeze for PlannerIdentity
impl RefUnwindSafe for PlannerIdentity
impl Send for PlannerIdentity
impl Sync for PlannerIdentity
impl Unpin for PlannerIdentity
impl UnsafeUnpin for PlannerIdentity
impl UnwindSafe for PlannerIdentity
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