#[repr(C)]pub struct pm_embedded_statements_node {
pub base: pm_node_t,
pub opening_loc: pm_location_t,
pub statements: *mut pm_statements_node,
pub closing_loc: pm_location_t,
}Expand description
EmbeddedStatementsNode
Represents an interpolated set of statements.
"foo #{bar}"
^^^^^^Type: ::PM_EMBEDDED_STATEMENTS_NODE
@extends pm_node_t
Fields§
§base: pm_node_tThe embedded base node.
opening_loc: pm_location_tEmbeddedStatementsNode#opening_loc
statements: *mut pm_statements_nodeEmbeddedStatementsNode#statements
closing_loc: pm_location_tEmbeddedStatementsNode#closing_loc
Trait Implementations§
Source§impl Clone for pm_embedded_statements_node
impl Clone for pm_embedded_statements_node
Source§fn clone(&self) -> pm_embedded_statements_node
fn clone(&self) -> pm_embedded_statements_node
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 pm_embedded_statements_node
impl Debug for pm_embedded_statements_node
impl Copy for pm_embedded_statements_node
Auto Trait Implementations§
impl Freeze for pm_embedded_statements_node
impl RefUnwindSafe for pm_embedded_statements_node
impl !Send for pm_embedded_statements_node
impl !Sync for pm_embedded_statements_node
impl Unpin for pm_embedded_statements_node
impl UnwindSafe for pm_embedded_statements_node
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