pub struct NamedObjectCacheSelectObjectFilter {
pub obj_type: Option<u16>,
pub obj_type_code: Option<ObjectTypeCode>,
pub dec_id: Option<ObjectId>,
pub owner_id: Option<ObjectId>,
pub author_id: Option<ObjectId>,
pub create_time: Option<NamedObjectCacheSelectObjectTimeRange>,
pub update_time: Option<NamedObjectCacheSelectObjectTimeRange>,
pub insert_time: Option<NamedObjectCacheSelectObjectTimeRange>,
pub flags: Option<u32>,
}
Fields
obj_type: Option<u16>
obj_type_code: Option<ObjectTypeCode>
dec_id: Option<ObjectId>
owner_id: Option<ObjectId>
create_time: Option<NamedObjectCacheSelectObjectTimeRange>
update_time: Option<NamedObjectCacheSelectObjectTimeRange>
insert_time: Option<NamedObjectCacheSelectObjectTimeRange>
flags: Option<u32>
Trait Implementations
sourceimpl Clone for NamedObjectCacheSelectObjectFilter
impl Clone for NamedObjectCacheSelectObjectFilter
sourcefn clone(&self) -> NamedObjectCacheSelectObjectFilter
fn clone(&self) -> NamedObjectCacheSelectObjectFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl From<NamedObjectCacheSelectObjectFilter> for SelectFilter
impl From<NamedObjectCacheSelectObjectFilter> for SelectFilter
sourcefn from(req: NamedObjectCacheSelectObjectFilter) -> Self
fn from(req: NamedObjectCacheSelectObjectFilter) -> Self
Converts to this type from the input type.
sourceimpl From<SelectFilter> for NamedObjectCacheSelectObjectFilter
impl From<SelectFilter> for NamedObjectCacheSelectObjectFilter
sourcefn from(req: SelectFilter) -> Self
fn from(req: SelectFilter) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for NamedObjectCacheSelectObjectFilter
impl Send for NamedObjectCacheSelectObjectFilter
impl Sync for NamedObjectCacheSelectObjectFilter
impl Unpin for NamedObjectCacheSelectObjectFilter
impl UnwindSafe for NamedObjectCacheSelectObjectFilter
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