pub struct DatabasePrivilegeRow {Show 13 fields
pub db: MySQLDatabase,
pub user: MySQLUser,
pub select_priv: bool,
pub insert_priv: bool,
pub update_priv: bool,
pub delete_priv: bool,
pub create_priv: bool,
pub drop_priv: bool,
pub alter_priv: bool,
pub index_priv: bool,
pub create_tmp_table_priv: bool,
pub lock_tables_priv: bool,
pub references_priv: bool,
}
Expand description
This struct represents the set of privileges for a single user on a single database.
Fields§
§db: MySQLDatabase
§user: MySQLUser
§select_priv: bool
§insert_priv: bool
§update_priv: bool
§delete_priv: bool
§create_priv: bool
§drop_priv: bool
§alter_priv: bool
§index_priv: bool
§create_tmp_table_priv: bool
§lock_tables_priv: bool
§references_priv: bool
Implementations§
Source§impl DatabasePrivilegeRow
impl DatabasePrivilegeRow
pub fn get_privilege_by_name(&self, name: &str) -> bool
Trait Implementations§
Source§impl Clone for DatabasePrivilegeRow
impl Clone for DatabasePrivilegeRow
Source§fn clone(&self) -> DatabasePrivilegeRow
fn clone(&self) -> DatabasePrivilegeRow
Returns a copy 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 Debug for DatabasePrivilegeRow
impl Debug for DatabasePrivilegeRow
Source§impl<'de> Deserialize<'de> for DatabasePrivilegeRow
impl<'de> Deserialize<'de> for DatabasePrivilegeRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromRow<'_, MySqlRow> for DatabasePrivilegeRow
impl FromRow<'_, MySqlRow> for DatabasePrivilegeRow
Source§impl Ord for DatabasePrivilegeRow
impl Ord for DatabasePrivilegeRow
Source§fn cmp(&self, other: &DatabasePrivilegeRow) -> Ordering
fn cmp(&self, other: &DatabasePrivilegeRow) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DatabasePrivilegeRow
impl PartialEq for DatabasePrivilegeRow
Source§impl PartialOrd for DatabasePrivilegeRow
impl PartialOrd for DatabasePrivilegeRow
Source§impl Serialize for DatabasePrivilegeRow
impl Serialize for DatabasePrivilegeRow
impl Eq for DatabasePrivilegeRow
impl StructuralPartialEq for DatabasePrivilegeRow
Auto Trait Implementations§
impl Freeze for DatabasePrivilegeRow
impl RefUnwindSafe for DatabasePrivilegeRow
impl Send for DatabasePrivilegeRow
impl Sync for DatabasePrivilegeRow
impl Unpin for DatabasePrivilegeRow
impl UnwindSafe for DatabasePrivilegeRow
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more