pub struct PendingHereDoc {
pub delimiter: String,
pub strip_tabs: bool,
pub quoted: bool,
}Expand description
Pending here-document to be read after the current line.
Fields§
§delimiter: String§strip_tabs: bool§quoted: boolTrait Implementations§
Source§impl Clone for PendingHereDoc
impl Clone for PendingHereDoc
Source§fn clone(&self) -> PendingHereDoc
fn clone(&self) -> PendingHereDoc
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 moreAuto Trait Implementations§
impl Freeze for PendingHereDoc
impl RefUnwindSafe for PendingHereDoc
impl Send for PendingHereDoc
impl Sync for PendingHereDoc
impl Unpin for PendingHereDoc
impl UnsafeUnpin for PendingHereDoc
impl UnwindSafe for PendingHereDoc
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