pub enum Except {
Refs(Vec<String>),
Complex {
refs: Option<Vec<String>>,
branches: Option<Vec<String>>,
tags: Option<Vec<String>>,
variables: Option<Vec<String>>,
changes: Option<Vec<String>>,
},
}Expand description
Except configuration
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Except
impl<'de> Deserialize<'de> for Except
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
Auto Trait Implementations§
impl Freeze for Except
impl RefUnwindSafe for Except
impl Send for Except
impl Sync for Except
impl Unpin for Except
impl UnsafeUnpin for Except
impl UnwindSafe for Except
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