[−][src]Enum indy_utils::wql::AbstractQuery
Variants
And(Vec<Self>)Or(Vec<Self>)Not(Box<Self>)In(K, Vec<V>)Implementations
impl<K, V> AbstractQuery<K, V>[src]
pub fn optimise(self) -> Option<Self>[src]
pub fn map_names<RK, F>(
self,
f: &mut F
) -> Result<AbstractQuery<RK, V>, ConversionError> where
F: FnMut(K) -> Result<RK, ConversionError>, [src]
self,
f: &mut F
) -> Result<AbstractQuery<RK, V>, ConversionError> where
F: FnMut(K) -> Result<RK, ConversionError>,
pub fn map_values<RV, F>(
self,
f: &mut F
) -> Result<AbstractQuery<K, RV>, ConversionError> where
F: FnMut(&K, V) -> Result<RV, ConversionError>, [src]
self,
f: &mut F
) -> Result<AbstractQuery<K, RV>, ConversionError> where
F: FnMut(&K, V) -> Result<RV, ConversionError>,
pub fn map<RK, RV, KF, VF>(
self,
kf: &mut KF,
vf: &mut VF
) -> Result<AbstractQuery<RK, RV>, ConversionError> where
KF: FnMut(K) -> Result<RK, ConversionError>,
VF: FnMut(&K, V) -> Result<RV, ConversionError>, [src]
self,
kf: &mut KF,
vf: &mut VF
) -> Result<AbstractQuery<RK, RV>, ConversionError> where
KF: FnMut(K) -> Result<RK, ConversionError>,
VF: FnMut(&K, V) -> Result<RV, ConversionError>,
Trait Implementations
impl<K: Clone, V: Clone> Clone for AbstractQuery<K, V>[src]
pub fn clone(&self) -> AbstractQuery<K, V>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<K: Debug, V: Debug> Debug for AbstractQuery<K, V>[src]
impl<K, V> Default for AbstractQuery<K, V>[src]
impl<K: Eq, V: Eq> Eq for AbstractQuery<K, V>[src]
impl<K: Hash, V: Hash> Hash for AbstractQuery<K, V>[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<K: Ord, V: Ord> Ord for AbstractQuery<K, V>[src]
pub fn cmp(&self, other: &AbstractQuery<K, V>) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self[src]
impl<K: PartialEq, V: PartialEq> PartialEq<AbstractQuery<K, V>> for AbstractQuery<K, V>[src]
pub fn eq(&self, other: &AbstractQuery<K, V>) -> bool[src]
pub fn ne(&self, other: &AbstractQuery<K, V>) -> bool[src]
impl<K: PartialOrd, V: PartialOrd> PartialOrd<AbstractQuery<K, V>> for AbstractQuery<K, V>[src]
pub fn partial_cmp(&self, other: &AbstractQuery<K, V>) -> Option<Ordering>[src]
pub fn lt(&self, other: &AbstractQuery<K, V>) -> bool[src]
pub fn le(&self, other: &AbstractQuery<K, V>) -> bool[src]
pub fn gt(&self, other: &AbstractQuery<K, V>) -> bool[src]
pub fn ge(&self, other: &AbstractQuery<K, V>) -> bool[src]
impl<K, V> Serialize for AbstractQuery<K, V> where
&'a K: Into<String>,
V: Serialize, [src]
&'a K: Into<String>,
V: Serialize,
impl<K, V> StructuralEq for AbstractQuery<K, V>[src]
impl<K, V> StructuralPartialEq for AbstractQuery<K, V>[src]
Auto Trait Implementations
impl<K, V> RefUnwindSafe for AbstractQuery<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for AbstractQuery<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Sync for AbstractQuery<K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<K, V> Unpin for AbstractQuery<K, V> where
K: Unpin,
V: Unpin,
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for AbstractQuery<K, V> where
K: UnwindSafe,
V: UnwindSafe,
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Clear for T where
T: InitializableFromZeroed + ?Sized,
T: InitializableFromZeroed + ?Sized,
pub fn clear(&mut self)
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> InitializableFromZeroed for T where
T: Default,
T: Default,
pub unsafe fn initialize(place: *mut T)
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,