Struct below_model::BTreeMapFieldId
source · [−]Expand description
Type that makes BTreeMap Queriable if its value is Queriable. Uses key
to query into a map. Uses subquery_id
to query into the selected value.
Fields
key: Option<K>
None is only for listing variants and otherwise invalid.
subquery_id: F
Trait Implementations
sourceimpl<K: Clone, F: Clone + FieldId> Clone for BTreeMapFieldId<K, F>
impl<K: Clone, F: Clone + FieldId> Clone for BTreeMapFieldId<K, F>
sourcefn clone(&self) -> BTreeMapFieldId<K, F>
fn clone(&self) -> BTreeMapFieldId<K, F>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<K: Ord + 'static, F: FieldId + EnumIter> EnumIter for BTreeMapFieldId<K, F>
impl<K: Ord + 'static, F: FieldId + EnumIter> EnumIter for BTreeMapFieldId<K, F>
sourcefn all_variant_iter() -> Box<dyn Iterator<Item = Self>>
fn all_variant_iter() -> Box<dyn Iterator<Item = Self>>
Return iterator for unit variants as well as nested variants.
sourcefn unit_variant_iter() -> Box<dyn Iterator<Item = Self>>
fn unit_variant_iter() -> Box<dyn Iterator<Item = Self>>
Return iterator for unit variants only.
sourceimpl<K: Ord, F: FieldId> FieldId for BTreeMapFieldId<K, F>where
<F as FieldId>::Queriable: Sized,
impl<K: Ord, F: FieldId> FieldId for BTreeMapFieldId<K, F>where
<F as FieldId>::Queriable: Sized,
sourceimpl<K: FromStr, F: FieldId + FromStr> FromStr for BTreeMapFieldId<K, F>where
<K as FromStr>::Err: Into<Error>,
<F as FromStr>::Err: Into<Error>,
impl<K: FromStr, F: FieldId + FromStr> FromStr for BTreeMapFieldId<K, F>where
<K as FromStr>::Err: Into<Error>,
<F as FromStr>::Err: Into<Error>,
sourceimpl<K: PartialEq, F: PartialEq + FieldId> PartialEq<BTreeMapFieldId<K, F>> for BTreeMapFieldId<K, F>
impl<K: PartialEq, F: PartialEq + FieldId> PartialEq<BTreeMapFieldId<K, F>> for BTreeMapFieldId<K, F>
sourcefn eq(&self, other: &BTreeMapFieldId<K, F>) -> bool
fn eq(&self, other: &BTreeMapFieldId<K, F>) -> bool
impl<K, F: FieldId> StructuralPartialEq for BTreeMapFieldId<K, F>
Auto Trait Implementations
impl<K, F> RefUnwindSafe for BTreeMapFieldId<K, F>where
F: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, F> Send for BTreeMapFieldId<K, F>where
F: Send,
K: Send,
impl<K, F> Sync for BTreeMapFieldId<K, F>where
F: Sync,
K: Sync,
impl<K, F> Unpin for BTreeMapFieldId<K, F>where
F: Unpin,
K: Unpin,
impl<K, F> UnwindSafe for BTreeMapFieldId<K, F>where
F: UnwindSafe,
K: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more