Struct atrium_api::com::atproto::admin::query_moderation_statuses::Parameters
source · pub struct Parameters {Show 18 fields
pub appealed: Option<bool>,
pub comment: Option<String>,
pub cursor: Option<String>,
pub exclude_tags: Option<Vec<String>>,
pub ignore_subjects: Option<Vec<String>>,
pub include_muted: Option<bool>,
pub last_reviewed_by: Option<Did>,
pub limit: Option<LimitedNonZeroU8<100u8>>,
pub reported_after: Option<Datetime>,
pub reported_before: Option<Datetime>,
pub review_state: Option<String>,
pub reviewed_after: Option<Datetime>,
pub reviewed_before: Option<Datetime>,
pub sort_direction: Option<String>,
pub sort_field: Option<String>,
pub subject: Option<String>,
pub tags: Option<Vec<String>>,
pub takendown: Option<bool>,
}
Fields§
§appealed: Option<bool>
Get subjects in unresolved appealed status
comment: Option<String>
Search subjects by keyword from comments
cursor: Option<String>
§ignore_subjects: Option<Vec<String>>
§include_muted: Option<bool>
By default, we don’t include muted subjects in the results. Set this to true to include them.
last_reviewed_by: Option<Did>
Get all subject statuses that were reviewed by a specific moderator
limit: Option<LimitedNonZeroU8<100u8>>
§reported_after: Option<Datetime>
Search subjects reported after a given timestamp
reported_before: Option<Datetime>
Search subjects reported before a given timestamp
review_state: Option<String>
Specify when fetching subjects in a certain state
reviewed_after: Option<Datetime>
Search subjects reviewed after a given timestamp
reviewed_before: Option<Datetime>
Search subjects reviewed before a given timestamp
sort_direction: Option<String>
§sort_field: Option<String>
§subject: Option<String>
§takendown: Option<bool>
Get subjects that were taken down
Trait Implementations§
source§impl Clone for Parameters
impl Clone for Parameters
source§fn clone(&self) -> Parameters
fn clone(&self) -> Parameters
Returns a copy 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 Parameters
impl Debug for Parameters
source§impl<'de> Deserialize<'de> for Parameters
impl<'de> Deserialize<'de> for Parameters
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 Parameters
impl PartialEq for Parameters
source§fn eq(&self, other: &Parameters) -> bool
fn eq(&self, other: &Parameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for Parameters
impl Serialize for Parameters
impl Eq for Parameters
impl StructuralPartialEq for Parameters
Auto Trait Implementations§
impl RefUnwindSafe for Parameters
impl Send for Parameters
impl Sync for Parameters
impl Unpin for Parameters
impl UnwindSafe for Parameters
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