pub struct RawStringDelimiter {
pub quote: StringQuote,
pub hash_count: u8,
}Expand description
The delimiter used by a raw string
Fields§
§quote: StringQuoteThe quotation mark used in the raw string delimiter
hash_count: u8The number of hashes used in the raw string delimiter
Trait Implementations§
Source§impl Clone for RawStringDelimiter
impl Clone for RawStringDelimiter
Source§fn clone(&self) -> RawStringDelimiter
fn clone(&self) -> RawStringDelimiter
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 RawStringDelimiter
impl Debug for RawStringDelimiter
Source§impl PartialEq for RawStringDelimiter
impl PartialEq for RawStringDelimiter
impl Copy for RawStringDelimiter
impl Eq for RawStringDelimiter
impl StructuralPartialEq for RawStringDelimiter
Auto Trait Implementations§
impl Freeze for RawStringDelimiter
impl RefUnwindSafe for RawStringDelimiter
impl Send for RawStringDelimiter
impl Sync for RawStringDelimiter
impl Unpin for RawStringDelimiter
impl UnwindSafe for RawStringDelimiter
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