pub struct PublicCollection {
pub entity: String,
pub actions: Vec<String>,
}Fields§
§entity: String§actions: Vec<String>Subset of CRUD actions exposed: “list”, “read”, “create”, “update”, “delete”.
Trait Implementations§
Source§impl Clone for PublicCollection
impl Clone for PublicCollection
Source§fn clone(&self) -> PublicCollection
fn clone(&self) -> PublicCollection
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 PublicCollection
impl Debug for PublicCollection
Source§impl<'de> Deserialize<'de> for PublicCollection
impl<'de> Deserialize<'de> for PublicCollection
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
Auto Trait Implementations§
impl Freeze for PublicCollection
impl RefUnwindSafe for PublicCollection
impl Send for PublicCollection
impl Sync for PublicCollection
impl Unpin for PublicCollection
impl UnsafeUnpin for PublicCollection
impl UnwindSafe for PublicCollection
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