pub struct ContactCreateDepartmentRequest {
pub name: String,
pub parent_id: i64,
pub extra: BTreeMap<String, Value>,
}Expand description
Public webhook and enterprise request/response helper types. Re-exported enterprise request/response types. Request for creating a department.
Fields§
§name: StringDepartment name.
parent_id: i64Parent department id.
extra: BTreeMap<String, Value>Additional pass-through fields supported by DingTalk.
Implementations§
Trait Implementations§
Source§impl Clone for ContactCreateDepartmentRequest
impl Clone for ContactCreateDepartmentRequest
Source§fn clone(&self) -> ContactCreateDepartmentRequest
fn clone(&self) -> ContactCreateDepartmentRequest
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 moreAuto Trait Implementations§
impl Freeze for ContactCreateDepartmentRequest
impl RefUnwindSafe for ContactCreateDepartmentRequest
impl Send for ContactCreateDepartmentRequest
impl Sync for ContactCreateDepartmentRequest
impl Unpin for ContactCreateDepartmentRequest
impl UnsafeUnpin for ContactCreateDepartmentRequest
impl UnwindSafe for ContactCreateDepartmentRequest
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