pub enum Only {
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
Only/except configuration
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Only
impl<'de> Deserialize<'de> for Only
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 Only
impl RefUnwindSafe for Only
impl Send for Only
impl Sync for Only
impl Unpin for Only
impl UnsafeUnpin for Only
impl UnwindSafe for Only
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