pub struct FlowConversationMessageAttachmentsInner {
pub input: String,
pub s3: String,
pub storage: Option<String>,
pub filename: Option<String>,
}Fields§
§input: StringThe flow input that held the file
s3: StringThe file’s key in object storage
storage: Option<String>The secondary storage holding the file, absent for the primary one
filename: Option<String>Implementations§
Source§impl FlowConversationMessageAttachmentsInner
impl FlowConversationMessageAttachmentsInner
pub fn new(input: String, s3: String) -> FlowConversationMessageAttachmentsInner
Trait Implementations§
Source§impl Clone for FlowConversationMessageAttachmentsInner
impl Clone for FlowConversationMessageAttachmentsInner
Source§fn clone(&self) -> FlowConversationMessageAttachmentsInner
fn clone(&self) -> FlowConversationMessageAttachmentsInner
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 Default for FlowConversationMessageAttachmentsInner
impl Default for FlowConversationMessageAttachmentsInner
Source§fn default() -> FlowConversationMessageAttachmentsInner
fn default() -> FlowConversationMessageAttachmentsInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowConversationMessageAttachmentsInner
impl<'de> Deserialize<'de> for FlowConversationMessageAttachmentsInner
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
impl StructuralPartialEq for FlowConversationMessageAttachmentsInner
Auto Trait Implementations§
impl Freeze for FlowConversationMessageAttachmentsInner
impl RefUnwindSafe for FlowConversationMessageAttachmentsInner
impl Send for FlowConversationMessageAttachmentsInner
impl Sync for FlowConversationMessageAttachmentsInner
impl Unpin for FlowConversationMessageAttachmentsInner
impl UnsafeUnpin for FlowConversationMessageAttachmentsInner
impl UnwindSafe for FlowConversationMessageAttachmentsInner
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