pub enum AttachmentData {
Region(RegionAttachment),
BoundingBox(BoundingBoxAttachment),
Mesh(MeshAttachment),
LinkedMesh(LinkedMeshAttachment),
Path(PathAttachment),
Point(PointAttachment),
Clipping(ClippingAttachment),
}Variants§
Region(RegionAttachment)
BoundingBox(BoundingBoxAttachment)
Mesh(MeshAttachment)
LinkedMesh(LinkedMeshAttachment)
Path(PathAttachment)
Point(PointAttachment)
Clipping(ClippingAttachment)
Trait Implementations§
Source§impl Debug for AttachmentData
impl Debug for AttachmentData
Source§impl<'_enum> From<&'_enum AttachmentData> for AttachmentType
impl<'_enum> From<&'_enum AttachmentData> for AttachmentType
Source§fn from(val: &'_enum AttachmentData) -> AttachmentType
fn from(val: &'_enum AttachmentData) -> AttachmentType
Converts to this type from the input type.
Source§impl From<AttachmentData> for AttachmentType
impl From<AttachmentData> for AttachmentType
Source§fn from(val: AttachmentData) -> AttachmentType
fn from(val: AttachmentData) -> AttachmentType
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AttachmentData
impl RefUnwindSafe for AttachmentData
impl Send for AttachmentData
impl Sync for AttachmentData
impl Unpin for AttachmentData
impl UnsafeUnpin for AttachmentData
impl UnwindSafe for AttachmentData
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