pub enum AssemblyAction {
Include,
Exclude,
Compress,
Truncate,
}Expand description
Action taken during context assembly.
Variants§
Include
Section was included in full
Exclude
Section was excluded due to budget
Compress
Section was compressed
Truncate
Section was truncated to fit budget
Trait Implementations§
Source§impl Clone for AssemblyAction
impl Clone for AssemblyAction
Source§fn clone(&self) -> AssemblyAction
fn clone(&self) -> AssemblyAction
Returns a duplicate 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 ComposeSchema for AssemblyAction
impl ComposeSchema for AssemblyAction
Source§impl Debug for AssemblyAction
impl Debug for AssemblyAction
Source§impl<'de> Deserialize<'de> for AssemblyAction
impl<'de> Deserialize<'de> for AssemblyAction
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 Hash for AssemblyAction
impl Hash for AssemblyAction
Source§impl PartialEq for AssemblyAction
impl PartialEq for AssemblyAction
Source§impl Serialize for AssemblyAction
impl Serialize for AssemblyAction
Source§impl ToSchema for AssemblyAction
impl ToSchema for AssemblyAction
impl Copy for AssemblyAction
impl Eq for AssemblyAction
impl StructuralPartialEq for AssemblyAction
Auto Trait Implementations§
impl Freeze for AssemblyAction
impl RefUnwindSafe for AssemblyAction
impl Send for AssemblyAction
impl Sync for AssemblyAction
impl Unpin for AssemblyAction
impl UnwindSafe for AssemblyAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.