pub trait IForecastFishDataMethods: IForecastFishData {
// Provided methods
fn ctor(self) { ... }
fn ctor_2(
self,
data: impl Into<FishingFishData>,
size_mult: impl Into<f32>,
priority: impl Into<f32>,
) { ... }
}Provided Methods§
Sourcefn ctor_2(
self,
data: impl Into<FishingFishData>,
size_mult: impl Into<f32>,
priority: impl Into<f32>,
)
fn ctor_2( self, data: impl Into<FishingFishData>, size_mult: impl Into<f32>, priority: impl Into<f32>, )
.ctor(crate::app::fishingfishdata::FishingFishData, f32, f32) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IForecastFishData> IForecastFishDataMethods for __T
Available on crate feature
app-fishing-forecastfishdata only.