pub struct PyString {
pub prefix: String,
pub content: PyStringContent,
}
Expand description
A Python string. See the doc of the crate for the boring speech about encoding stuff.
Fields§
§prefix: String
§content: PyStringContent
Trait Implementations§
impl Eq for PyString
impl StructuralPartialEq for PyString
Auto Trait Implementations§
impl Freeze for PyString
impl RefUnwindSafe for PyString
impl Send for PyString
impl Sync for PyString
impl Unpin for PyString
impl UnwindSafe for PyString
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