Struct agdb::RemoveAliasesQuery
source · pub struct RemoveAliasesQuery(pub Vec<String>);Expand description
Query to remove aliases from the database. It is not an error if an alias to be removed already does not exist.
The result will be a negative number signifying how many aliases have been actually removed.
Tuple Fields§
§0: Vec<String>Trait Implementations§
source§impl QueryMut for RemoveAliasesQuery
impl QueryMut for RemoveAliasesQuery
fn process<Store: StorageData>( &self, db: &mut DbImpl<Store> ) -> Result<QueryResult, QueryError>
Auto Trait Implementations§
impl RefUnwindSafe for RemoveAliasesQuery
impl Send for RemoveAliasesQuery
impl Sync for RemoveAliasesQuery
impl Unpin for RemoveAliasesQuery
impl UnwindSafe for RemoveAliasesQuery
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