pub struct SendAccessResponseModel {
pub object: Option<String>,
pub id: Option<String>,
pub type: Option<SendType>,
pub auth_type: Option<AuthType>,
pub name: Option<String>,
pub file: Option<Box<SendFileModel>>,
pub text: Option<Box<SendTextModel>>,
pub expiration_date: Option<String>,
pub creator_identifier: Option<String>,
}Expand description
SendAccessResponseModel : A response issued to a Bitwarden client in response to access operations.
Fields§
§object: Option<String>§id: Option<String>Identifies the send in a send URL
type: Option<SendType>§auth_type: Option<AuthType>§name: Option<String>Label for the send. This is only visible to the owner of the send.
file: Option<Box<SendFileModel>>§text: Option<Box<SendTextModel>>§expiration_date: Option<String>The date after which a send cannot be accessed. When this value is null, there is no expiration date.
creator_identifier: Option<String>Indicates the person that created the send to the accessor.
Implementations§
Source§impl SendAccessResponseModel
impl SendAccessResponseModel
Sourcepub fn new() -> SendAccessResponseModel
pub fn new() -> SendAccessResponseModel
A response issued to a Bitwarden client in response to access operations.
Trait Implementations§
Source§impl Clone for SendAccessResponseModel
impl Clone for SendAccessResponseModel
Source§fn clone(&self) -> SendAccessResponseModel
fn clone(&self) -> SendAccessResponseModel
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 SendAccessResponseModel
impl Debug for SendAccessResponseModel
Source§impl Default for SendAccessResponseModel
impl Default for SendAccessResponseModel
Source§fn default() -> SendAccessResponseModel
fn default() -> SendAccessResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendAccessResponseModel
impl<'de> Deserialize<'de> for SendAccessResponseModel
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
Source§impl PartialEq for SendAccessResponseModel
impl PartialEq for SendAccessResponseModel
Source§impl Serialize for SendAccessResponseModel
impl Serialize for SendAccessResponseModel
impl StructuralPartialEq for SendAccessResponseModel
Auto Trait Implementations§
impl Freeze for SendAccessResponseModel
impl RefUnwindSafe for SendAccessResponseModel
impl Send for SendAccessResponseModel
impl Sync for SendAccessResponseModel
impl Unpin for SendAccessResponseModel
impl UnsafeUnpin for SendAccessResponseModel
impl UnwindSafe for SendAccessResponseModel
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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