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<'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