Enum rustc_target::spec::StackProtector
source · [−]pub enum StackProtector {
None,
Basic,
Strong,
All,
}
Expand description
Controls use of stack canaries.
Variants
None
Disable stack canary generation.
Basic
On LLVM, mark all generated LLVM functions with the ssp
attribute (see
llvm/docs/LangRef.rst). This triggers stack canary generation in
functions which contain an array of a byte-sized type with more than
eight elements.
Strong
On LLVM, mark all generated LLVM functions with the sspstrong
attribute (see llvm/docs/LangRef.rst). This triggers stack canary
generation in functions which either contain an array, or which take
the address of a local variable.
All
Generate stack canaries in all functions.
Implementations
sourceimpl StackProtector
impl StackProtector
Trait Implementations
sourceimpl Clone for StackProtector
impl Clone for StackProtector
sourcefn clone(&self) -> StackProtector
fn clone(&self) -> StackProtector
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StackProtector
impl Debug for StackProtector
sourceimpl Display for StackProtector
impl Display for StackProtector
sourceimpl FromStr for StackProtector
impl FromStr for StackProtector
sourceimpl Hash for StackProtector
impl Hash for StackProtector
sourceimpl PartialEq<StackProtector> for StackProtector
impl PartialEq<StackProtector> for StackProtector
impl Copy for StackProtector
impl Eq for StackProtector
impl StructuralEq for StackProtector
impl StructuralPartialEq for StackProtector
Auto Trait Implementations
impl RefUnwindSafe for StackProtector
impl Send for StackProtector
impl Sync for StackProtector
impl Unpin for StackProtector
impl UnwindSafe for StackProtector
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
None
: 0 bytesBasic
: 0 bytesStrong
: 0 bytesAll
: 0 bytes