Struct create_rust_app::auth::RolePermission
source · [−]pub struct RolePermission {
pub role: String,
pub permission: String,
pub created_at: DateTime<Utc>,
}Fields
role: Stringpermission: Stringcreated_at: DateTime<Utc>Implementations
sourceimpl RolePermission
impl RolePermission
pub fn create(
db: &Connection,
item: &RolePermissionChangeset
) -> QueryResult<Self>
pub fn create_many(
db: &Connection,
items: Vec<RolePermissionChangeset>
) -> QueryResult<Vec<Self>>
pub fn read(
db: &Connection,
item_role: String,
item_permission: String
) -> QueryResult<Self>
pub fn read_all(db: &Connection, item_role: String) -> QueryResult<Vec<Self>>
pub fn delete(
db: &Connection,
item_role: String,
item_permission: String
) -> QueryResult<usize>
pub fn delete_many(
db: &Connection,
item_role: String,
item_permissions: Vec<String>
) -> QueryResult<usize>
pub fn delete_all(db: &Connection, item_role: &str) -> QueryResult<usize>
Trait Implementations
sourceimpl<'update> AsChangeset for &'update RolePermission
impl<'update> AsChangeset for &'update RolePermission
type Target = table
type Target = table
The table which Self::Changeset will be updating
type Changeset = <(Eq<role, <&'update String as AsExpression<<role as Expression>::SqlType>>::Expression>, Eq<permission, <&'update String as AsExpression<<permission as Expression>::SqlType>>::Expression>, Eq<created_at, <&'update DateTime<Utc> as AsExpression<<created_at as Expression>::SqlType>>::Expression>) as AsChangeset>::Changeset
type Changeset = <(Eq<role, <&'update String as AsExpression<<role as Expression>::SqlType>>::Expression>, Eq<permission, <&'update String as AsExpression<<permission as Expression>::SqlType>>::Expression>, Eq<created_at, <&'update DateTime<Utc> as AsExpression<<created_at as Expression>::SqlType>>::Expression>) as AsChangeset>::Changeset
The update statement this type represents
sourcefn as_changeset(self) -> Self::Changeset
fn as_changeset(self) -> Self::Changeset
Convert self into the actual update statement being executed
sourceimpl<'update> AsChangeset for RolePermission
impl<'update> AsChangeset for RolePermission
type Target = table
type Target = table
The table which Self::Changeset will be updating
type Changeset = <(Eq<role, <String as AsExpression<<role as Expression>::SqlType>>::Expression>, Eq<permission, <String as AsExpression<<permission as Expression>::SqlType>>::Expression>, Eq<created_at, <DateTime<Utc> as AsExpression<<created_at as Expression>::SqlType>>::Expression>) as AsChangeset>::Changeset
type Changeset = <(Eq<role, <String as AsExpression<<role as Expression>::SqlType>>::Expression>, Eq<permission, <String as AsExpression<<permission as Expression>::SqlType>>::Expression>, Eq<created_at, <DateTime<Utc> as AsExpression<<created_at as Expression>::SqlType>>::Expression>) as AsChangeset>::Changeset
The update statement this type represents
sourcefn as_changeset(self) -> Self::Changeset
fn as_changeset(self) -> Self::Changeset
Convert self into the actual update statement being executed
sourceimpl Clone for RolePermission
impl Clone for RolePermission
sourcefn clone(&self) -> RolePermission
fn clone(&self) -> RolePermission
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 more
sourceimpl Debug for RolePermission
impl Debug for RolePermission
sourceimpl<'de> Deserialize<'de> for RolePermission
impl<'de> Deserialize<'de> for RolePermission
sourcefn 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
sourceimpl<__DB: Backend, __ST> Queryable<__ST, __DB> for RolePermission where
(String, String, DateTime<Utc>): Queryable<__ST, __DB>,
impl<__DB: Backend, __ST> Queryable<__ST, __DB> for RolePermission where
(String, String, DateTime<Utc>): Queryable<__ST, __DB>,
sourceimpl Serialize for RolePermission
impl Serialize for RolePermission
Auto Trait Implementations
impl RefUnwindSafe for RolePermission
impl Send for RolePermission
impl Sync for RolePermission
impl Unpin for RolePermission
impl UnwindSafe for RolePermission
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> IntoSql for T
impl<T> IntoSql for T
sourcefn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
fn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
Convert self to an expression for Diesel’s query builder. Read more
sourcefn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
Convert &self to an expression for Diesel’s query builder. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more