pub struct GetProcess {
pub id: i64,
pub status: Status,
pub name: String,
pub export_url: Option<String>,
}Fields§
§id: i64Id of the process
status: StatusStatus of the process
name: StringProcess name
export_url: Option<String>URL on which send export the of contacts once the process is completed
Implementations§
Source§impl GetProcess
impl GetProcess
Trait Implementations§
Source§impl Clone for GetProcess
impl Clone for GetProcess
Source§fn clone(&self) -> GetProcess
fn clone(&self) -> GetProcess
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 GetProcess
impl Debug for GetProcess
Source§impl Default for GetProcess
impl Default for GetProcess
Source§fn default() -> GetProcess
fn default() -> GetProcess
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetProcess
impl<'de> Deserialize<'de> for GetProcess
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
Source§impl PartialEq for GetProcess
impl PartialEq for GetProcess
Source§impl Serialize for GetProcess
impl Serialize for GetProcess
impl StructuralPartialEq for GetProcess
Auto Trait Implementations§
impl Freeze for GetProcess
impl RefUnwindSafe for GetProcess
impl Send for GetProcess
impl Sync for GetProcess
impl Unpin for GetProcess
impl UnwindSafe for GetProcess
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