pub struct RequestEntity {
pub id: Option<i64>,
pub path: Option<String>,
pub source: Option<String>,
pub destination: Option<String>,
pub automation_id: Option<i64>,
pub user_display_name: Option<String>,
}
Expand description
A Request entity (File Request)
Fields§
§id: Option<i64>
Request ID
path: Option<String>
Folder path
source: Option<String>
Source filename (if applicable)
destination: Option<String>
Destination filename
automation_id: Option<i64>
ID of automation that created this request
user_display_name: Option<String>
User making the request (if applicable)
Trait Implementations§
Source§impl Clone for RequestEntity
impl Clone for RequestEntity
Source§fn clone(&self) -> RequestEntity
fn clone(&self) -> RequestEntity
Returns a duplicate of the value. Read more
1.0.0 · 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 RequestEntity
impl Debug for RequestEntity
Source§impl<'de> Deserialize<'de> for RequestEntity
impl<'de> Deserialize<'de> for RequestEntity
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 RequestEntity
impl RefUnwindSafe for RequestEntity
impl Send for RequestEntity
impl Sync for RequestEntity
impl Unpin for RequestEntity
impl UnwindSafe for RequestEntity
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