pub struct UpdateConfigDelta {
pub generates_signatures: Option<bool>,
pub sources: Option<Vec<UpdateSourceDelta>>,
pub update_interval_seconds: Option<i32>,
pub wait_for_update: Option<bool>,
pub signature_delimiter: Option<SignatureDelimiter>,
pub custom_delimiter: Option<String>,
pub default_pattern: Option<Text>,
}
Fields§
§generates_signatures: Option<bool>
REF_UPDATE_CONFIG
sources: Option<Vec<UpdateSourceDelta>>
REF_UPDATE_CONFIG
update_interval_seconds: Option<i32>
REF_UPDATE_CONFIG
wait_for_update: Option<bool>
REF_UPDATE_CONFIG
signature_delimiter: Option<SignatureDelimiter>
REF_UPDATE_CONFIG
custom_delimiter: Option<String>
REF_UPDATE_CONFIG
default_pattern: Option<Text>
REF_UPDATE_CONFIG
Trait Implementations§
Source§impl Described<ElasticMeta> for UpdateConfigDelta
impl Described<ElasticMeta> for UpdateConfigDelta
Source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
Source§impl<'de> Deserialize<'de> for UpdateConfigDelta
impl<'de> Deserialize<'de> for UpdateConfigDelta
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 UpdateConfigDelta
impl RefUnwindSafe for UpdateConfigDelta
impl Send for UpdateConfigDelta
impl Sync for UpdateConfigDelta
impl Unpin for UpdateConfigDelta
impl UnwindSafe for UpdateConfigDelta
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more