pub struct AccessControlEntryRecord {
pub id: Uuid,
pub resource_type: i8,
pub resource_name: String,
pub pattern_type: i8,
pub principal: String,
pub host: String,
pub operation: i8,
pub permission_type: i8,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§id: Uuid§resource_type: i8§resource_name: String§pattern_type: i8§principal: String§host: String§operation: i8§permission_type: i8§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for AccessControlEntryRecord
impl Clone for AccessControlEntryRecord
Source§fn clone(&self) -> AccessControlEntryRecord
fn clone(&self) -> AccessControlEntryRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AccessControlEntryRecord
impl Debug for AccessControlEntryRecord
Source§impl Decode<'_> for AccessControlEntryRecord
impl Decode<'_> for AccessControlEntryRecord
Source§impl Default for AccessControlEntryRecord
impl Default for AccessControlEntryRecord
Source§fn default() -> AccessControlEntryRecord
fn default() -> AccessControlEntryRecord
Returns the “default value” for a type. Read more
Source§impl Encode for AccessControlEntryRecord
impl Encode for AccessControlEntryRecord
impl Eq for AccessControlEntryRecord
Source§impl PartialEq for AccessControlEntryRecord
impl PartialEq for AccessControlEntryRecord
Source§fn eq(&self, other: &AccessControlEntryRecord) -> bool
fn eq(&self, other: &AccessControlEntryRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccessControlEntryRecord
Auto Trait Implementations§
impl Freeze for AccessControlEntryRecord
impl RefUnwindSafe for AccessControlEntryRecord
impl Send for AccessControlEntryRecord
impl Sync for AccessControlEntryRecord
impl Unpin for AccessControlEntryRecord
impl UnsafeUnpin for AccessControlEntryRecord
impl UnwindSafe for AccessControlEntryRecord
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