pub struct ProfileObjectTarget {
pub object_type: ObjectType,
pub name: Option<String>,
}Expand description
Object target within a profile — schema is omitted (filled during expansion).
Fields§
§object_type: ObjectType§name: Option<String>Object name, or “*” for all objects of this type. Omit for schema-level grants.
Trait Implementations§
Source§impl Clone for ProfileObjectTarget
impl Clone for ProfileObjectTarget
Source§fn clone(&self) -> ProfileObjectTarget
fn clone(&self) -> ProfileObjectTarget
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 Debug for ProfileObjectTarget
impl Debug for ProfileObjectTarget
Source§impl<'de> Deserialize<'de> for ProfileObjectTarget
impl<'de> Deserialize<'de> for ProfileObjectTarget
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 ProfileObjectTarget
impl RefUnwindSafe for ProfileObjectTarget
impl Send for ProfileObjectTarget
impl Sync for ProfileObjectTarget
impl Unpin for ProfileObjectTarget
impl UnsafeUnpin for ProfileObjectTarget
impl UnwindSafe for ProfileObjectTarget
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