pub struct DevelopmentSettings {
pub watch: Option<BTreeSet<WatchItem>>,
}Expand description
Specifies the development configuration for maintaining a container in sync with source.
See more: https://docs.docker.com/reference/compose-file/develop
Fields§
§watch: Option<BTreeSet<WatchItem>>The watch attribute defines a list of rules that control automatic service updates based on local file changes. watch is a sequence, each individual item in the sequence defines a rule to be applied by Compose to monitor source code for changes.
Trait Implementations§
Source§impl Clone for DevelopmentSettings
impl Clone for DevelopmentSettings
Source§fn clone(&self) -> DevelopmentSettings
fn clone(&self) -> DevelopmentSettings
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 Debug for DevelopmentSettings
impl Debug for DevelopmentSettings
Source§impl Default for DevelopmentSettings
impl Default for DevelopmentSettings
Source§fn default() -> DevelopmentSettings
fn default() -> DevelopmentSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DevelopmentSettings
impl<'de> Deserialize<'de> for DevelopmentSettings
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 PartialEq for DevelopmentSettings
impl PartialEq for DevelopmentSettings
Source§impl Serialize for DevelopmentSettings
impl Serialize for DevelopmentSettings
impl Eq for DevelopmentSettings
impl StructuralPartialEq for DevelopmentSettings
Auto Trait Implementations§
impl Freeze for DevelopmentSettings
impl RefUnwindSafe for DevelopmentSettings
impl Send for DevelopmentSettings
impl Sync for DevelopmentSettings
impl Unpin for DevelopmentSettings
impl UnsafeUnpin for DevelopmentSettings
impl UnwindSafe for DevelopmentSettings
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.