pub struct DeriveQueryMut<Querier: ?Sized>(pub Querier);Tuple Fields§
§0: QuerierTrait Implementations§
Source§impl<Querier: Clone + ?Sized> Clone for DeriveQueryMut<Querier>
impl<Querier: Clone + ?Sized> Clone for DeriveQueryMut<Querier>
Source§fn clone(&self) -> DeriveQueryMut<Querier>
fn clone(&self) -> DeriveQueryMut<Querier>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Querier: Default + ?Sized> Default for DeriveQueryMut<Querier>
impl<Querier: Default + ?Sized> Default for DeriveQueryMut<Querier>
Source§fn default() -> DeriveQueryMut<Querier>
fn default() -> DeriveQueryMut<Querier>
Returns the “default value” for a type. Read more
Source§impl<'a, Querier: Query<'a> + ?Sized> Query<'a> for DeriveQueryMut<Querier>
impl<'a, Querier: Query<'a> + ?Sized> Query<'a> for DeriveQueryMut<Querier>
fn query_raw_text(&self, field: ParsedField) -> Option<&'a str>
fn file_name(&self) -> Option<FileName<'a>>
fn name(&self) -> Option<Name<'a>>
fn base(&self) -> Option<Base<'a>>
fn version(&self) -> Option<Version<'a>>
fn description(&self) -> Option<Description<'a>>
fn groups(&self) -> Option<GroupList<'a>>
fn compressed_size(&self) -> Option<Size<'a>>
fn installed_size(&self) -> Option<Size<'a>>
fn md5_checksum(&self) -> Option<Hex128<'a>>
fn sha256_checksum(&self) -> Option<Hex256<'a>>
fn pgp_signature(&self) -> Option<PgpSignature<'a>>
fn url(&self) -> Option<Url<'a>>
fn license(&self) -> Option<LicenseList<'a>>
fn architecture(&self) -> Option<ArchitectureList<'a>>
fn build_date(&self) -> Option<Timestamp<'a>>
fn packager(&self) -> Option<Packager<'a>>
fn dependencies(&self) -> Option<DependencyList<'a>>
fn make_dependencies(&self) -> Option<DependencyList<'a>>
fn check_dependencies(&self) -> Option<DependencyList<'a>>
fn opt_dependencies(&self) -> Option<DependencyAndReasonList<'a>>
fn provides(&self) -> Option<DependencyList<'a>>
fn conflicts(&self) -> Option<DependencyList<'a>>
fn replaces(&self) -> Option<DependencyList<'a>>
Source§impl<'a, Querier: Query<'a> + ?Sized> QueryMut<'a> for DeriveQueryMut<Querier>
impl<'a, Querier: Query<'a> + ?Sized> QueryMut<'a> for DeriveQueryMut<Querier>
fn query_raw_text_mut(&mut self, field: ParsedField) -> Option<&'a str>
fn file_name_mut(&mut self) -> Option<FileName<'a>>
fn name_mut(&mut self) -> Option<Name<'a>>
fn base_mut(&mut self) -> Option<Base<'a>>
fn version_mut(&mut self) -> Option<Version<'a>>
fn description_mut(&mut self) -> Option<Description<'a>>
fn groups_mut(&mut self) -> Option<GroupList<'a>>
fn compressed_size_mut(&mut self) -> Option<Size<'a>>
fn installed_size_mut(&mut self) -> Option<Size<'a>>
fn md5_checksum_mut(&mut self) -> Option<Hex128<'a>>
fn sha256_checksum_mut(&mut self) -> Option<Hex256<'a>>
fn pgp_signature_mut(&mut self) -> Option<PgpSignature<'a>>
fn url_mut(&mut self) -> Option<Url<'a>>
fn license_mut(&mut self) -> Option<LicenseList<'a>>
fn architecture_mut(&mut self) -> Option<ArchitectureList<'a>>
fn build_date_mut(&mut self) -> Option<Timestamp<'a>>
fn packager_mut(&mut self) -> Option<Packager<'a>>
fn dependencies_mut(&mut self) -> Option<DependencyList<'a>>
fn make_dependencies_mut(&mut self) -> Option<DependencyList<'a>>
fn check_dependencies_mut(&mut self) -> Option<DependencyList<'a>>
fn opt_dependencies_mut(&mut self) -> Option<DependencyAndReasonList<'a>>
fn provides_mut(&mut self) -> Option<DependencyList<'a>>
fn conflicts_mut(&mut self) -> Option<DependencyList<'a>>
fn replaces_mut(&mut self) -> Option<DependencyList<'a>>
Source§impl<Querier: ReuseAdvice + ?Sized> ReuseAdvice for DeriveQueryMut<Querier>
impl<Querier: ReuseAdvice + ?Sized> ReuseAdvice for DeriveQueryMut<Querier>
Source§type ShouldReuse = <Querier as ReuseAdvice>::ShouldReuse
type ShouldReuse = <Querier as ReuseAdvice>::ShouldReuse
Whether the querier should be reused.
impl<Querier: Copy + ?Sized> Copy for DeriveQueryMut<Querier>
Auto Trait Implementations§
impl<Querier> Freeze for DeriveQueryMut<Querier>
impl<Querier> RefUnwindSafe for DeriveQueryMut<Querier>where
Querier: RefUnwindSafe + ?Sized,
impl<Querier> Send for DeriveQueryMut<Querier>
impl<Querier> Sync for DeriveQueryMut<Querier>
impl<Querier> Unpin for DeriveQueryMut<Querier>
impl<Querier> UnwindSafe for DeriveQueryMut<Querier>where
Querier: UnwindSafe + ?Sized,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<X> Pipe for X
impl<X> Pipe for X
Source§fn pipe_ref<'a, Return, Function>(&'a self, f: Function) -> Returnwhere
Function: FnOnce(&'a Self) -> Return,
fn pipe_ref<'a, Return, Function>(&'a self, f: Function) -> Returnwhere
Function: FnOnce(&'a Self) -> Return,
Source§fn pipe_mut<'a, Return, Function>(&'a mut self, f: Function) -> Returnwhere
Function: FnOnce(&'a mut Self) -> Return,
fn pipe_mut<'a, Return, Function>(&'a mut self, f: Function) -> Returnwhere
Function: FnOnce(&'a mut Self) -> Return,
Source§fn pipe_as_ref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
fn pipe_as_ref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
Apply
f to &self where f takes a single parameter of type Param
and Self implements trait AsRef<Param>. Read moreSource§fn pipe_as_mut<'a, Param, Return, Function>(&'a mut self, f: Function) -> Return
fn pipe_as_mut<'a, Param, Return, Function>(&'a mut self, f: Function) -> Return
Apply
f to &mut self where f takes a single parameter of type Param
and Self implements trait AsMut<Param>. Read moreSource§fn pipe_deref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
fn pipe_deref<'a, Param, Return, Function>(&'a self, f: Function) -> Return
Apply
f to &self where f takes a single parameter of type Param
and Self implements trait Deref<Target = Param>. Read moreSource§fn pipe_deref_mut<'a, Param, Return, Function>(
&'a mut self,
f: Function,
) -> Returnwhere
Self: DerefMut<Target = Param>,
Param: 'a + ?Sized,
Function: FnOnce(&'a mut Param) -> Return,
fn pipe_deref_mut<'a, Param, Return, Function>(
&'a mut self,
f: Function,
) -> Returnwhere
Self: DerefMut<Target = Param>,
Param: 'a + ?Sized,
Function: FnOnce(&'a mut Param) -> Return,
Apply
f to &mut self where f takes a single parameter of type Param
and Self implements trait DerefMut<Target = Param>. Read moreSource§fn pipe_borrow<'a, Param, Return, Function>(&'a self, f: Function) -> Return
fn pipe_borrow<'a, Param, Return, Function>(&'a self, f: Function) -> Return
Apply
f to &self where f takes a single parameter of type Param
and Self implements trait Borrow<Param>. Read moreSource§fn pipe_borrow_mut<'a, Param, Return, Function>(
&'a mut self,
f: Function,
) -> Return
fn pipe_borrow_mut<'a, Param, Return, Function>( &'a mut self, f: Function, ) -> Return
Apply
f to &mut self where f takes a single parameter of type Param
and Self implements trait BorrowMut<Param>. Read moreSource§impl<Querier> ReuseAdviceBool for Querierwhere
Querier: ReuseAdvice + ?Sized,
impl<Querier> ReuseAdviceBool for Querierwhere
Querier: ReuseAdvice + ?Sized,
Source§const SHOULD_REUSE: bool = <Self::ShouldReuse>::VALUE
const SHOULD_REUSE: bool = <Self::ShouldReuse>::VALUE
The value of
ReuseAdvice::ShouldReuse as a bool.Source§impl<Querier> ReuseAdviceSelf for Querierwhere
Querier: ReuseAdvice + ?Sized,
impl<Querier> ReuseAdviceSelf for Querierwhere
Querier: ReuseAdvice + ?Sized,
Source§fn should_reuse(&self) -> bool
fn should_reuse(&self) -> bool
Determine wether
self should be reused.