pub struct PageRestriction<'input> {
pub id: PageRestrictionId,
pub page: PageId,
pub type: PageAction<'input>,
pub level: ProtectionLevel<'input>,
pub cascade: bool,
pub user: Option<u32>,
pub expiry: Option<Expiry>,
}
Expand description
Represents a row in the page_restrictions
table.
Fields§
§id: PageRestrictionId
§page: PageId
§type: PageAction<'input>
§level: ProtectionLevel<'input>
§cascade: bool
§user: Option<u32>
§expiry: Option<Expiry>
Trait Implementations§
Source§impl<'input> Clone for PageRestriction<'input>
impl<'input> Clone for PageRestriction<'input>
Source§fn clone(&self) -> PageRestriction<'input>
fn clone(&self) -> PageRestriction<'input>
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<'input> Debug for PageRestriction<'input>
impl<'input> Debug for PageRestriction<'input>
Source§impl<'de: 'input, 'input> Deserialize<'de> for PageRestriction<'input>
impl<'de: 'input, 'input> Deserialize<'de> for PageRestriction<'input>
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<'input> FromSqlTuple<'input> for PageRestriction<'input>
impl<'input> FromSqlTuple<'input> for PageRestriction<'input>
fn from_sql_tuple(s: &'input [u8]) -> IResult<'input, Self>
Source§impl<'input> Hash for PageRestriction<'input>
impl<'input> Hash for PageRestriction<'input>
Source§impl<'input> Ord for PageRestriction<'input>
impl<'input> Ord for PageRestriction<'input>
Source§fn cmp(&self, other: &PageRestriction<'input>) -> Ordering
fn cmp(&self, other: &PageRestriction<'input>) -> 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<'input> PartialEq for PageRestriction<'input>
impl<'input> PartialEq for PageRestriction<'input>
Source§impl<'input> PartialOrd for PageRestriction<'input>
impl<'input> PartialOrd for PageRestriction<'input>
Source§impl<'input> Serialize for PageRestriction<'input>
impl<'input> Serialize for PageRestriction<'input>
impl<'input> Eq for PageRestriction<'input>
impl<'input> StructuralPartialEq for PageRestriction<'input>
Auto Trait Implementations§
impl<'input> Freeze for PageRestriction<'input>
impl<'input> RefUnwindSafe for PageRestriction<'input>
impl<'input> Send for PageRestriction<'input>
impl<'input> Sync for PageRestriction<'input>
impl<'input> Unpin for PageRestriction<'input>
impl<'input> UnwindSafe for PageRestriction<'input>
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