Docs.rs
flowistry-0.5.44
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
flowistry 0.5.44
Modular information flow analysis
Crate
Source
Builds
Feature flags
Hide files
..
array_mut_ptr_mutate_index.txt
array_mut_ptr_mutate_index.txt.expected
basic_variable_reassign.txt
basic_variable_reassign.txt.expected
mut_child_closure.txt
mut_child_closure.txt.expected
mutable_function_arg.txt
mutable_function_arg.txt.expected
struct_method_mutable_self.txt
struct_method_mutable_self.txt.expected
struct_mut_ptr_field.txt
struct_mut_ptr_field.txt.expected
struct_mut_ptr_function.txt
struct_mut_ptr_function.txt.expected
struct_write_find_only_field.txt
struct_write_find_only_field.txt.expected
struct_write_find_whole_struct.txt
struct_write_find_whole_struct.txt.expected
tuple_field_mutable_ref_mutation.txt
tuple_field_mutable_ref_mutation.txt.expected
tuple_field_write_find_only_field.txt
tuple_field_write_find_only_field.txt.expected
tuple_field_write_find_whole_tuple.txt
tuple_field_write_find_whole_tuple.txt.expected
update_mutable_borrow.txt
update_mutable_borrow.txt.expected
vec_mut_ptr_mutate_index.txt
vec_mut_ptr_mutate_index.txt.expected
1
2
3
4
5
fn main() { `[let mut x = 1;]` let y = &mut x; `[*y += 1;]` }