pub struct SendEditRequest {
pub name: String,
pub notes: Option<String>,
pub view_type: SendViewType,
pub max_access_count: Option<u32>,
pub disabled: bool,
pub hide_email: bool,
pub deletion_date: DateTime<Utc>,
pub expiration_date: Option<DateTime<Utc>>,
pub auth: SendAuthType,
}Expand description
Request model for editing an existing Send.
Fields§
§name: StringThe name of the Send.
notes: Option<String>Optional notes visible to the sender.
view_type: SendViewTypeThe type and content of the Send.
max_access_count: Option<u32>Maximum number of times the Send can be accessed.
disabled: boolWhether the Send is disabled and cannot be accessed.
hide_email: boolWhether to hide the sender’s email from recipients.
deletion_date: DateTime<Utc>Date and time when the Send will be permanently deleted.
expiration_date: Option<DateTime<Utc>>Optional date and time when the Send expires and can no longer be accessed.
auth: SendAuthTypeAuthentication method for accessing this Send.
Trait Implementations§
Source§impl Debug for SendEditRequest
impl Debug for SendEditRequest
Source§impl<'de> Deserialize<'de> for SendEditRequest
impl<'de> Deserialize<'de> for SendEditRequest
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 From<SendEditRequest> for JsValuewhere
SendEditRequest: Serialize,
impl From<SendEditRequest> for JsValuewhere
SendEditRequest: Serialize,
Source§fn from(value: SendEditRequest) -> Self
fn from(value: SendEditRequest) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
impl FromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for &SendEditRequestwhere
SendEditRequest: Serialize,
impl IntoWasmAbi for &SendEditRequestwhere
SendEditRequest: Serialize,
Source§impl IntoWasmAbi for SendEditRequestwhere
SendEditRequest: Serialize,
impl IntoWasmAbi for SendEditRequestwhere
SendEditRequest: Serialize,
Source§impl OptionFromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
Source§impl OptionIntoWasmAbi for SendEditRequestwhere
SendEditRequest: Serialize,
impl OptionIntoWasmAbi for SendEditRequestwhere
SendEditRequest: Serialize,
Source§impl RefFromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
impl RefFromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = SelfOwner<SendEditRequest>
type Anchor = SelfOwner<SendEditRequest>
The type that holds the reference to
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl Serialize for SendEditRequest
impl Serialize for SendEditRequest
Source§impl Tsify for SendEditRequest
impl Tsify for SendEditRequest
const DECL: &'static str = "/**\n * Request model for editing an existing Send.\n */\nexport interface SendEditRequest {\n /**\n * The name of the Send.\n */\n name: string;\n /**\n * Optional notes visible to the sender.\n */\n notes: string | undefined;\n /**\n * The type and content of the Send.\n */\n viewType: SendViewType;\n /**\n * Maximum number of times the Send can be accessed.\n */\n maxAccessCount: number | undefined;\n /**\n * Whether the Send is disabled and cannot be accessed.\n */\n disabled: boolean;\n /**\n * Whether to hide the sender\\\'s email from recipients.\n */\n hideEmail: boolean;\n /**\n * Date and time when the Send will be permanently deleted.\n */\n deletionDate: DateTime<Utc>;\n /**\n * Optional date and time when the Send expires and can no longer be accessed.\n */\n expirationDate: DateTime<Utc> | undefined;\n /**\n * Authentication method for accessing this Send.\n */\n auth: SendAuthType;\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Source§impl VectorFromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for SendEditRequestwhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl VectorIntoWasmAbi for SendEditRequestwhere
SendEditRequest: Serialize,
impl VectorIntoWasmAbi for SendEditRequestwhere
SendEditRequest: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Source§impl WasmDescribe for SendEditRequest
impl WasmDescribe for SendEditRequest
Auto Trait Implementations§
impl Freeze for SendEditRequest
impl RefUnwindSafe for SendEditRequest
impl Send for SendEditRequest
impl Sync for SendEditRequest
impl Unpin for SendEditRequest
impl UnsafeUnpin for SendEditRequest
impl UnwindSafe for SendEditRequest
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<> Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.