pub struct ArcSubstring {
pub string: Arc<String>,
pub start: usize,
pub end: usize,
}Expand description
An owned ArcSubstr
Fields§
§string: Arc<String>§start: usize§end: usizeImplementations§
Source§impl ArcSubstring
impl ArcSubstring
Trait Implementations§
Source§impl Debug for ArcSubstring
impl Debug for ArcSubstring
Source§impl Display for ArcSubstring
impl Display for ArcSubstring
Source§impl Hash for ArcSubstring
impl Hash for ArcSubstring
Source§impl Ord for ArcSubstring
impl Ord for ArcSubstring
Source§impl PartialEq for ArcSubstring
impl PartialEq for ArcSubstring
Source§impl PartialOrd for ArcSubstring
impl PartialOrd for ArcSubstring
impl Eq for ArcSubstring
Auto Trait Implementations§
impl Freeze for ArcSubstring
impl RefUnwindSafe for ArcSubstring
impl Send for ArcSubstring
impl Sync for ArcSubstring
impl Unpin for ArcSubstring
impl UnsafeUnpin for ArcSubstring
impl UnwindSafe for ArcSubstring
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