pub struct BatchJob {
pub job_id: String,
pub job_type: String,
pub err_code: i32,
pub err_msg: String,
}Fields§
§job_id: String异步任务id,最大长度为64字符
job_type: String操作类型,字符串,在异步导出的场景下分别有: export_user(导出成员详情)、 export_simple_user(导出成员)、 export_department(导出部门)、 export_tag(导出标签成员)
err_code: i32返回码
err_msg: String对返回码的文本描述内容
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BatchJob
impl<'de> Deserialize<'de> for BatchJob
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 BatchJob
impl RefUnwindSafe for BatchJob
impl Send for BatchJob
impl Sync for BatchJob
impl Unpin for BatchJob
impl UnwindSafe for BatchJob
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