pub struct SecurityFlags {
pub has_script_blocks: bool,
pub has_sub_expressions: bool,
pub has_expandable_strings: bool,
pub has_member_invocations: bool,
pub has_splatting: bool,
pub has_assignments: bool,
pub has_stop_parsing: bool,
pub has_variables: bool,
}Expand description
Security flags derived from parsing
Fields§
§has_script_blocks: bool§has_sub_expressions: bool§has_expandable_strings: bool§has_member_invocations: bool§has_splatting: bool§has_assignments: bool§has_stop_parsing: bool§has_variables: boolTrait Implementations§
Source§impl Clone for SecurityFlags
impl Clone for SecurityFlags
Source§fn clone(&self) -> SecurityFlags
fn clone(&self) -> SecurityFlags
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 SecurityFlags
impl Debug for SecurityFlags
Source§impl Default for SecurityFlags
impl Default for SecurityFlags
Source§fn default() -> SecurityFlags
fn default() -> SecurityFlags
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SecurityFlags
impl RefUnwindSafe for SecurityFlags
impl Send for SecurityFlags
impl Sync for SecurityFlags
impl Unpin for SecurityFlags
impl UnsafeUnpin for SecurityFlags
impl UnwindSafe for SecurityFlags
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