Enum tor_config::sources::ConfigurationSource
source · pub enum ConfigurationSource {
File(PathBuf),
Dir(PathBuf),
}
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.
Trait Implementations§
source§impl AsRef<PathBuf> for ConfigurationSource
impl AsRef<PathBuf> for ConfigurationSource
source§impl Clone for ConfigurationSource
impl Clone for ConfigurationSource
source§fn clone(&self) -> ConfigurationSource
fn clone(&self) -> ConfigurationSource
Returns a copy 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 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,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ConfigurationSource
impl PartialEq for ConfigurationSource
source§fn eq(&self, other: &ConfigurationSource) -> bool
fn eq(&self, other: &ConfigurationSource) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ConfigurationSource
impl PartialOrd for ConfigurationSource
source§fn partial_cmp(&self, other: &ConfigurationSource) -> Option<Ordering>
fn partial_cmp(&self, other: &ConfigurationSource) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for ConfigurationSource
impl StructuralEq for ConfigurationSource
impl StructuralPartialEq for ConfigurationSource
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.