Search
 
SCRIPT & CODE EXAMPLE
 

RUST

armanriazi•rust•unsafe•static

Until now, we’ve not talked about global variables, which Rust does support but can be problematic with Rust’s ownership rules. If two threads are accessing the same mutable global variable, it can cause a data race.
'static lifetime, which means the Rust compiler can figure out the lifetime and we aren’t required to annotate it explicitly. Accessing an immutable static variable is safe.
Comment

armanriazi•rust•unsafe•trait

Another use case for unsafe is implementing an unsafe trait. 
A trait is unsafe when at least one of its methods has some invariant that By using unsafe impl, we’re promising that we’ll uphold the invariants that the compiler can’t verify.
We can declare that a trait is unsafe by adding the unsafe keyword before trait and marking the implementation of the trait as unsafe too
{
Sync and Send are examples of unsafe traits.
}

unsafe trait Foo {
    // methods go here
}

unsafe impl Foo for i32 {
    // method implementations go here
}

fn main() {}
Comment

PREVIOUS NEXT
Code Example
Rust :: rust•armanriazi•cast•try_into•unwrap 
Rust :: armanriazi•rust•collection•hashmap•key•modify 
Rust :: rust sort vec of f64 
Rust :: rust How to use if let statement with conditions? 
Rust :: rust the size for values of type `str` cannot be known at compilation time the trait `Sized` is not implemented for `str` 
Rust :: armanriazi•rust•nestedtypes 
Rust :: Rust Options Some None using closures 
Rust :: decimal in rust 
Rust :: armanriazi•rust•lifetime•drop 
Rust :: rust string split 
Lua :: how to save to a file lua 
Lua :: how to get a random number in lua 
Lua :: roblox make kill brick 
Lua :: roblox how to tween part color 
Lua :: forever loop in lua 
Lua :: loop true childs roblox 
Lua :: lua what is _ENV 
Lua :: roblox number between 1 and 10 
Lua :: lua string split 
Lua :: lua string length 
Lua :: table lua 
Lua :: Lua how to get the index of a nested table 
Lua :: roblox player left 
Lua :: lua print hi 
Matlab :: streamline matlab 
Matlab :: scilab plot 2d function 
Basic :: personal access token 
Basic :: Loop inner fiter() 
Elixir :: ** (Ecto.ConstraintError) constraint error when attempting to insert struct: * id_fkey (foreign_key_constraint) 
Scala :: quantification scalaire 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =