Struct dingtalk_rs::client::ParamsUserInactiveGet
source · [−]pub struct ParamsUserInactiveGet {
pub is_active: bool,
pub dept_ids: Option<Vec<i64>>,
pub offset: i64,
pub size: u32,
pub query_date: String,
}
Fields
is_active: bool
是否活跃: false:未登录 true:登录
dept_ids: Option<Vec<i64>>
部门ID列表,可调用获取部门列表获取,不传表示查询整个企业
offset: i64
支持分页查询,与size参数同时设置时才生效,此参数代表偏移量,偏移量从0开始
size: u32
支持分页查询,与offset参数同时设置时才生效,此参数代表分页大小,最大100
query_date: String
查询日期,日期格式为:yyyyMMdd
Trait Implementations
sourceimpl Debug for ParamsUserInactiveGet
impl Debug for ParamsUserInactiveGet
sourceimpl Default for ParamsUserInactiveGet
impl Default for ParamsUserInactiveGet
sourcefn default() -> ParamsUserInactiveGet
fn default() -> ParamsUserInactiveGet
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ParamsUserInactiveGet
impl<'de> Deserialize<'de> for ParamsUserInactiveGet
sourcefn 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
sourceimpl Serialize for ParamsUserInactiveGet
impl Serialize for ParamsUserInactiveGet
Auto Trait Implementations
impl RefUnwindSafe for ParamsUserInactiveGet
impl Send for ParamsUserInactiveGet
impl Sync for ParamsUserInactiveGet
impl Unpin for ParamsUserInactiveGet
impl UnwindSafe for ParamsUserInactiveGet
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more