pub enum ConfigurationSource {
File(PathBuf),
Dir(PathBuf),
Verbatim(Arc<String>),
}
Expand description
A configuration file or directory, for use by a ConfigurationSources
You can make one out of a PathBuf
, examining its syntax like arti
does,
using ConfigurationSource::from_path
.
Variants§
Implementations§
Source§impl ConfigurationSource
impl ConfigurationSource
Sourcepub fn from_path<P: Into<PathBuf>>(p: P) -> ConfigurationSource
pub fn from_path<P: Into<PathBuf>>(p: P) -> ConfigurationSource
Interpret a path (or string) as a configuration file or directory spec
If the path syntactically specifies a directory
(i.e., can be seen to be a directory without accessing the filesystem,
for example because it ends in a directory separator such as /
)
it is treated as specifying a directory.
Sourcepub fn from_verbatim(text: String) -> ConfigurationSource
pub fn from_verbatim(text: String) -> ConfigurationSource
Use the provided text as verbatim TOML, as if it had been read from disk.
Trait Implementations§
Source§impl Clone for ConfigurationSource
impl Clone for ConfigurationSource
Source§fn clone(&self) -> ConfigurationSource
fn clone(&self) -> ConfigurationSource
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ConfigurationSource
impl Debug for ConfigurationSource
Source§impl Hash for ConfigurationSource
impl Hash for ConfigurationSource
Source§impl Ord for ConfigurationSource
impl Ord for ConfigurationSource
Source§fn cmp(&self, other: &ConfigurationSource) -> Ordering
fn cmp(&self, other: &ConfigurationSource) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ConfigurationSource
impl PartialEq for ConfigurationSource
Source§impl PartialOrd for ConfigurationSource
impl PartialOrd for ConfigurationSource
impl Eq for ConfigurationSource
impl StructuralPartialEq for ConfigurationSource
Auto Trait Implementations§
impl Freeze for ConfigurationSource
impl RefUnwindSafe for ConfigurationSource
impl Send for ConfigurationSource
impl Sync for ConfigurationSource
impl Unpin for ConfigurationSource
impl UnwindSafe for ConfigurationSource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
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>
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
File
: 24 bytesDir
: 24 bytesVerbatim
: 8 bytes