• @[email protected]
    link
    fedilink
    18 months ago
    trait Person {
        fn get_father(&self) -> Option;
    }
    
    struct You;
    
    impl Person for You {
        fn get_father(&self) -> Option {
            None
        }
    }