pub struct AttachmentDirectory {
pub display_name: String,
pub path: String,
pub type: AttachmentDirectoryType,
}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: AttachmentDirectoryTypeAttachment type discriminator
Trait Implementations§
Source§impl Clone for AttachmentDirectory
impl Clone for AttachmentDirectory
Source§fn clone(&self) -> AttachmentDirectory
fn clone(&self) -> AttachmentDirectory
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 AttachmentDirectory
impl Debug for AttachmentDirectory
Source§impl Default for AttachmentDirectory
impl Default for AttachmentDirectory
Source§fn default() -> AttachmentDirectory
fn default() -> AttachmentDirectory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentDirectory
impl<'de> Deserialize<'de> for AttachmentDirectory
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 AttachmentDirectory
impl RefUnwindSafe for AttachmentDirectory
impl Send for AttachmentDirectory
impl Sync for AttachmentDirectory
impl Unpin for AttachmentDirectory
impl UnsafeUnpin for AttachmentDirectory
impl UnwindSafe for AttachmentDirectory
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