Struct cargo_gazelle::QuotedString
source · pub struct QuotedString(pub(crate) String);
Expand description
A String
that when formatted for Bazel is quoted.
use cargo_gazelle::{QuotedString, ToBazelDefinition};
let deps = QuotedString::new("json");
assert_eq!(deps.to_bazel_definition(), "\"json\"");
Tuple Fields§
§0: String
Implementations§
Trait Implementations§
source§impl Clone for QuotedString
impl Clone for QuotedString
source§fn clone(&self) -> QuotedString
fn clone(&self) -> QuotedString
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 QuotedString
impl Debug for QuotedString
source§impl<T: ToString> From<T> for QuotedString
impl<T: ToString> From<T> for QuotedString
source§impl Ord for QuotedString
impl Ord for QuotedString
source§fn cmp(&self, other: &QuotedString) -> Ordering
fn cmp(&self, other: &QuotedString) -> 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 QuotedString
impl PartialEq for QuotedString
source§impl PartialOrd for QuotedString
impl PartialOrd for QuotedString
source§impl ToBazelDefinition for QuotedString
impl ToBazelDefinition for QuotedString
impl Eq for QuotedString
impl StructuralPartialEq for QuotedString
Auto Trait Implementations§
impl Freeze for QuotedString
impl RefUnwindSafe for QuotedString
impl Send for QuotedString
impl Sync for QuotedString
impl Unpin for QuotedString
impl UnwindSafe for QuotedString
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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.