pub enum AdSetStatus {
Active,
Paused,
Archived,
Deleted,
Other(String),
}Expand description
The lifecycle status of an ad set.
Variants§
Active
Ad set is running.
Paused
Ad set is paused.
Archived
Ad set is archived.
Deleted
Ad set has been deleted.
Other(String)
Platform-specific status not mapped to a known variant.
Trait Implementations§
Source§impl Clone for AdSetStatus
impl Clone for AdSetStatus
Source§fn clone(&self) -> AdSetStatus
fn clone(&self) -> AdSetStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AdSetStatus
impl Debug for AdSetStatus
Source§impl<'de> Deserialize<'de> for AdSetStatus
impl<'de> Deserialize<'de> for AdSetStatus
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AdSetStatus
impl Display for AdSetStatus
impl Eq for AdSetStatus
Source§impl PartialEq for AdSetStatus
impl PartialEq for AdSetStatus
Source§fn eq(&self, other: &AdSetStatus) -> bool
fn eq(&self, other: &AdSetStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AdSetStatus
impl Serialize for AdSetStatus
impl StructuralPartialEq for AdSetStatus
Auto Trait Implementations§
impl Freeze for AdSetStatus
impl RefUnwindSafe for AdSetStatus
impl Send for AdSetStatus
impl Sync for AdSetStatus
impl Unpin for AdSetStatus
impl UnsafeUnpin for AdSetStatus
impl UnwindSafe for AdSetStatus
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