pub enum CCNewsStatus {
ACTIVE,
INACTIVE,
}
Expand description
List of statuses used to filter articles based on their source integration state. Current allowed values are: ACTIVE, INACTIVE. An ACTIVE status indicates that the source’s integration, such as an RSS feed, is currently operational and actively providing data. An INACTIVE status is assigned to sources that have either blocked access, disabled their integration mechanisms, or ceased operations. More statuses may be added in the future as source integration scenarios evolve.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for CCNewsStatus
impl RefUnwindSafe for CCNewsStatus
impl Send for CCNewsStatus
impl Sync for CCNewsStatus
impl Unpin for CCNewsStatus
impl UnwindSafe for CCNewsStatus
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