pub enum CellVisibility {
Private,
Public,
}Expand description
Cell visibility - controls HTTP request access tier.
Variants§
Trait Implementations§
Source§impl Clone for CellVisibility
impl Clone for CellVisibility
Source§fn clone(&self) -> CellVisibility
fn clone(&self) -> CellVisibility
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 moreimpl Copy for CellVisibility
Source§impl Debug for CellVisibility
impl Debug for CellVisibility
Source§impl<'de> Deserialize<'de> for CellVisibility
impl<'de> Deserialize<'de> for CellVisibility
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
impl Eq for CellVisibility
Source§impl PartialEq for CellVisibility
impl PartialEq for CellVisibility
Source§fn eq(&self, other: &CellVisibility) -> bool
fn eq(&self, other: &CellVisibility) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CellVisibility
impl Serialize for CellVisibility
impl StructuralPartialEq for CellVisibility
Auto Trait Implementations§
impl Freeze for CellVisibility
impl RefUnwindSafe for CellVisibility
impl Send for CellVisibility
impl Sync for CellVisibility
impl Unpin for CellVisibility
impl UnsafeUnpin for CellVisibility
impl UnwindSafe for CellVisibility
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