diff --git a/Rust/Rust.md b/Rust/Rust.md index cc2fcf9..36a0208 100644 --- a/Rust/Rust.md +++ b/Rust/Rust.md @@ -571,34 +571,6 @@ s.method(arg); // use struct method Struct::associated_func(arg); ``` -### Generic Structs & Methods - -Generic Data Types are abstract stand-ind for concrete data types or other properties. -They can be used with structs, functions, methods, etc. - -```rs -struct GenericStruct { - T generic_field, - U generic_field, - ... -} - -impl GenericStruct { - fn generic_method() -> Type { } - fn generic_method() -> Type { } -} - -// implementation for specific types -impl GenericStruct { - fn method() -> Type { } -} - -fn generic_func() -> Type { } -fn generic_func() -> &T { } // T could be heap-based type, returning reference is always valid - -fn generic() -> Type { } // use generic constraint -``` - ## Traits A Trait is a collection of methods representing a set of behaviours necessary to accomplish some task. @@ -617,6 +589,14 @@ impl Trait for Struct { // specific implementation } } + +// trait as parameter or return +fn method_signature(param: &impl Trait) -> Type {} +fn method_signature(param: &(impl TraitOne + TraitTwo) -> Type {} + +// method can only return a single type and that type must implement the trait, +// useful for closures or iterators +fn method_signature(param: Type) -> impl Trait {} ``` ### Derive Traits @@ -655,7 +635,7 @@ fn generic_method() where T: RequiredTrait + RequiredTrait, U: RequiredTrait + RequiredTrait { - + // implementation } // returned must implement specified trait @@ -679,6 +659,40 @@ impl FooExt for Foo { } ``` +### Generic Structs & Methods + +Generic Data Types are abstract stand-ind for concrete data types or other properties. +They can be used with structs, functions, methods, etc. + +```rs +struct GenericStruct { + T generic_field, + U generic_field, + ... +} + +impl GenericStruct { + fn generic_method() -> Type { } + fn generic_method() -> Type { } +} + +// implementation for specific types +impl GenericStruct { + fn method() -> Type { } +} + +// implementation for specific traits +impl GenericStruct {/* ...*/} + +// implement a trait for all types with a specific trait (AKA blanket implementation) +impl ImplementedTrait for T {/* ...*/} + +fn generic_func() -> Type { } +fn generic_func() -> &T { } // T could be heap-based type, returning reference is always valid + +fn generic() -> Type { } // use generic constraint +``` + **NOTE**: the calling code needs to import your new trait in addition to the external type ## Lifetimes