Struct cmake_parser::command::scripting::EndBlock
source · pub struct EndBlock;
Expand description
Ends a list of commands in a block() and removes the scopes created by the block() command.
Reference: https://cmake.org/cmake/help/v3.26/command/endblock.html
Trait Implementations§
source§impl<'t> CMakeParse<'t> for EndBlock
impl<'t> CMakeParse<'t> for EndBlock
fn parse<'tv>( tokens: &'tv [Token<'t>] ) -> Result<(Self, &'tv [Token<'t>]), CommandParseError>
fn complete(tokens: &[Token<'t>]) -> Result<Self, CommandParseError>
fn default_value() -> Option<Self>
fn matches( &self, field_keyword: &[u8], keyword: &[u8], tokens: &[Token<'t>] ) -> bool
fn matches_type( field_keyword: &[u8], keyword: &[u8], tokens: &[Token<'t>] ) -> bool
fn need_update( field_keyword: &[u8], keyword: &Token<'t>, buffer: &[Token<'t>] ) -> bool
fn start<'tv>( &mut self, field_keyword: &[u8], keyword: &Token<'t>, tokens: &'tv [Token<'t>], buffer: &mut Vec<Token<'t>> ) -> Result<(bool, &'tv [Token<'t>]), CommandParseError>
fn rest<'tv>(tokens: &'tv [Token<'t>]) -> &'tv [Token<'t>]
fn need_push_keyword(keyword: &Token<'t>) -> bool
fn update_mode(keyword: &Token<'t>) -> bool
fn update<'tv>( &mut self, tokens: &'tv [Token<'t>] ) -> Result<(), CommandParseError>
fn end<'tv>(self, tokens: &'tv [Token<'t>]) -> Result<Self, CommandParseError>
fn push_keyword( &mut self, buffer: &mut Vec<Token<'t>>, keyword: &Token<'t> ) -> bool
fn reset_mode() -> bool
source§impl<'t> CMakePositional<'t> for EndBlock
impl<'t> CMakePositional<'t> for EndBlock
fn positional<'tv>( default_name: &'static [u8], tokens: &'tv [Token<'t>], has_keyword: bool ) -> Result<(Self, &'tv [Token<'t>]), CommandParseError>
fn positional_complete<'tv>( default_name: &'static [u8], tokens: &'tv [Token<'t>], has_keyword: bool ) -> Result<(Self, &'tv [Token<'t>]), CommandParseError>
source§impl Ord for EndBlock
impl Ord for EndBlock
source§impl PartialEq for EndBlock
impl PartialEq for EndBlock
source§impl PartialOrd for EndBlock
impl PartialOrd for EndBlock
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ToCommandScope for EndBlock
impl ToCommandScope for EndBlock
fn to_command_scope(&self) -> CommandScope
impl Eq for EndBlock
impl StructuralPartialEq for EndBlock
Auto Trait Implementations§
impl Freeze for EndBlock
impl RefUnwindSafe for EndBlock
impl Send for EndBlock
impl Sync for EndBlock
impl Unpin for EndBlock
impl UnwindSafe for EndBlock
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