pub struct EnvComment<'a>(/* private fields */);
Expand description
Represents a comment in an environment file.
The comment content excludes the leading #
character.
Trait Implementations§
Source§impl<'a> Clone for EnvComment<'a>
impl<'a> Clone for EnvComment<'a>
Source§fn clone(&self) -> EnvComment<'a>
fn clone(&self) -> EnvComment<'a>
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<'a> Debug for EnvComment<'a>
impl<'a> Debug for EnvComment<'a>
Source§impl<'a> Display for EnvComment<'a>
impl<'a> Display for EnvComment<'a>
Source§impl<'a> PartialEq for EnvComment<'a>
impl<'a> PartialEq for EnvComment<'a>
Source§impl<'a> TryFrom<&'a str> for EnvComment<'a>
impl<'a> TryFrom<&'a str> for EnvComment<'a>
impl<'a> StructuralPartialEq for EnvComment<'a>
Auto Trait Implementations§
impl<'a> Freeze for EnvComment<'a>
impl<'a> RefUnwindSafe for EnvComment<'a>
impl<'a> Send for EnvComment<'a>
impl<'a> Sync for EnvComment<'a>
impl<'a> Unpin for EnvComment<'a>
impl<'a> UnwindSafe for EnvComment<'a>
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