Method Types
Payable Methods
#[payable]
pub fn my_method(&mut self) {
...
}Private Methods
#[private]
pub fn my_method(&mut self) {
...
}Difference between pub fn and fn
Difference between private functions and fn
Last updated