pub struct TableOwner {
pub handle: Option<String>,
pub owner_type: Option<String>,
}Expand description
Table owner info
Fields§
§handle: Option<String>Owner handle
owner_type: Option<String>Owner type (user, team)
Trait Implementations§
Source§impl Clone for TableOwner
impl Clone for TableOwner
Source§fn clone(&self) -> TableOwner
fn clone(&self) -> TableOwner
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 TableOwner
impl Debug for TableOwner
Source§impl<'de> Deserialize<'de> for TableOwner
impl<'de> Deserialize<'de> for TableOwner
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 TableOwner
impl RefUnwindSafe for TableOwner
impl Send for TableOwner
impl Sync for TableOwner
impl Unpin for TableOwner
impl UnwindSafe for TableOwner
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