pub struct PushAttachmentDirectory {
pub display_name: String,
pub path: String,
pub type: PushAttachmentDirectoryType,
}Expand description
Directory attachment
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§display_name: StringUser-facing display name for the attachment
path: StringAbsolute directory path
type: PushAttachmentDirectoryTypeAttachment type discriminator
Trait Implementations§
Source§impl Clone for PushAttachmentDirectory
impl Clone for PushAttachmentDirectory
Source§fn clone(&self) -> PushAttachmentDirectory
fn clone(&self) -> PushAttachmentDirectory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PushAttachmentDirectory
impl Debug for PushAttachmentDirectory
Source§impl Default for PushAttachmentDirectory
impl Default for PushAttachmentDirectory
Source§fn default() -> PushAttachmentDirectory
fn default() -> PushAttachmentDirectory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PushAttachmentDirectory
impl<'de> Deserialize<'de> for PushAttachmentDirectory
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 PushAttachmentDirectory
impl RefUnwindSafe for PushAttachmentDirectory
impl Send for PushAttachmentDirectory
impl Sync for PushAttachmentDirectory
impl Unpin for PushAttachmentDirectory
impl UnsafeUnpin for PushAttachmentDirectory
impl UnwindSafe for PushAttachmentDirectory
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