pub struct PlanInstance {
pub name: String,
pub implementation: String,
pub co_locate_with: Option<String>,
}Expand description
CDP-Fragment — eine Plan-Component-Instance (D&C §7.4).
Fields§
§name: Stringname — Instance-Name innerhalb des Plans.
implementation: StringReference auf eine ImplementationDescription.
co_locate_with: Option<String>Co-Location-Constraint (Spec §7.8: dasselbe ProcessId).
Trait Implementations§
Source§impl Clone for PlanInstance
impl Clone for PlanInstance
Source§fn clone(&self) -> PlanInstance
fn clone(&self) -> PlanInstance
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 PlanInstance
impl Debug for PlanInstance
Source§impl PartialEq for PlanInstance
impl PartialEq for PlanInstance
Source§fn eq(&self, other: &PlanInstance) -> bool
fn eq(&self, other: &PlanInstance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PlanInstance
impl StructuralPartialEq for PlanInstance
Auto Trait Implementations§
impl Freeze for PlanInstance
impl RefUnwindSafe for PlanInstance
impl Send for PlanInstance
impl Sync for PlanInstance
impl Unpin for PlanInstance
impl UnsafeUnpin for PlanInstance
impl UnwindSafe for PlanInstance
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