pub struct ShareResult {
pub invitee_principal_id: Option<String>,
pub principal_id: Option<String>,
pub role: Option<String>,
pub share_id: Option<String>,
pub status: Option<String>,
pub status_message: Option<String>,
}
Expand description
Describes the share results of a resource.
Fields§
§invitee_principal_id: Option<String>
The ID of the invited user.
principal_id: Option<String>
The ID of the principal.
role: Option<String>
The role.
The ID of the resource that was shared.
status: Option<String>
The status.
status_message: Option<String>
The status message.
Trait Implementations§
Source§fn clone(&self) -> ShareResult
fn clone(&self) -> ShareResult
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§fn default() -> ShareResult
fn default() -> ShareResult
Returns the “default value” for a type. Read more
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§
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