1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
//!
//! Variadic constructor. Constructor with n arguments. Like Default, but with arguments.
//!
/// Internal namespace.
pub( crate ) mod private
{
// ///
// /// Constructor without arguments. Alias of Default.
// ///
//
// #[ allow( non_camel_case_types ) ]
// pub trait From_0
// where
// Self : Sized,
// {
// // /// Constructor without arguments.
// // fn from() -> Self
// // {
// // Self::from_0()
// // }
// /// Constructor without arguments.
// fn from_0() -> Self;
// }
//
// impl< All > From_0 for All
// where
// All : Default,
// {
// /// Constructor without arguments.
// fn from_0() -> Self
// {
// Self::default()
// }
// }
///
/// Constructor with single argument.
///
#[ allow( non_camel_case_types ) ]
pub trait From1< Arg >
where
Self : Sized,
{
/// Constructor with a single arguments.
fn from1( arg : Arg ) -> Self;
}
impl< T, All > From1< ( T, ) > for All
where
All : From1< T >,
{
fn from1( arg : ( T, ) ) -> Self
{
From1::< T >::from1( arg.0 )
}
}
impl< All > From1< () > for All
where
All : Default,
{
fn from1( _a : () ) -> Self { Self::default() }
}
// impl< All > From< () > for All
// where
// All : Default,
// {
// fn from( _a : () ) -> Self { Self::default() }
// }
// impl< T, All > From1< T > for All
// where
// All : core::convert::From< T >,
// {
// fn from1( arg : T ) -> Self
// {
// core::convert::From::< T >::from( arg )
// }
// }
// impl< T1, T2, All > From1< ( T1, T2 ) > for All
// where
// All : core::convert::From< ( T1, T2 ) >,
// {
// fn from1( arg : ( T1, T2 ) ) -> Self
// {
// core::convert::From::< ( T1, T2 ) >::from( arg )
// }
// }
/// value-to-value conversion that consumes the input value. Change left and rught, but keep semantic of `From1``.
#[ allow( non_camel_case_types ) ]
pub trait Into1< T > : Sized
{
/// Converts this type into the (usually inferred) input type.
fn to( self ) -> T;
}
impl< All, F > Into1< F > for All
where
F : From1< All >,
{
#[ inline ]
fn to( self ) -> F
{
F::from1( self )
}
}
// impl< All, F > Into1< F > for All
// where
// F : From1< F >,
// F : From< All >,
// {
// #[ inline ]
// fn to( self ) -> F
// {
// F::from1( From::from( self ) )
// }
// }
// impl< T, All > From< ( T, ) > for All
// where
// All : From1< T >,
// {
// }
///
/// Constructor with two arguments.
///
#[ allow( non_camel_case_types ) ]
pub trait From2< Arg1, Arg2 >
where
Self : Sized,
{
// /// Constructor with two arguments.
// fn from( arg1 : Arg1, arg2 : Arg2 ) -> Self
// {
// Self::from2( arg1, arg2 )
// }
/// Constructor with two arguments.
fn from2( arg1 : Arg1, arg2 : Arg2 ) -> Self;
}
impl< T1, T2, All > From1< ( T1, T2 ) > for All
where
All : From2< T1, T2 >,
{
fn from1( arg : ( T1, T2 ) ) -> Self
{
From2::< T1, T2 >::from2( arg.0, arg.1 )
}
}
///
/// Constructor with three arguments.
///
#[ allow( non_camel_case_types ) ]
pub trait From3< Arg1, Arg2, Arg3 >
where
Self : Sized,
{
// /// Constructor with three arguments.
// fn from( arg1 : Arg1, arg2 : Arg2, arg3 : Arg3 ) -> Self
// {
// Self::from3( arg1, arg2, arg3 )
// }
/// Constructor with three arguments.
fn from3( arg1 : Arg1, arg2 : Arg2, arg3 : Arg3 ) -> Self;
}
impl< T1, T2, T3, All > From1< ( T1, T2, T3 ) > for All
where
All : From3< T1, T2, T3 >,
{
fn from1( arg : ( T1, T2, T3 ) ) -> Self
{
From3::< T1, T2, T3 >::from3( arg.0, arg.1, arg.2 )
}
}
// ///
// /// Constructor with four arguments.
// ///
//
// #[ allow( non_camel_case_types ) ]
// pub trait From4< Arg1, Arg2, Arg3, Arg4 >
// where
// Self : Sized,
// {
// /// Constructor with four arguments.
// fn from( arg1 : Arg1, arg2 : Arg2, arg3 : Arg3, arg4 : Arg4 ) -> Self
// {
// Self::from4( arg1, arg2, arg3, arg4 )
// }
// /// Constructor with four arguments.
// fn from4( arg1 : Arg1, arg2 : Arg2, arg3 : Arg3, arg4 : Arg4 ) -> Self;
// }
// impl< T, E > From< ( E, ) > for T
// where
// T : From1< ( E, ) >,
// {
// /// Returns the argument unchanged.
// #[ inline( always ) ]
// fn from( src : T ) -> Self
// {
// Self::from1( src )
// }
// }
// not possible
//
// impl< T, F > From< T > for F
// where
// F : From1< T >,
// {
// /// Returns the argument unchanged.
// #[ inline( always ) ]
// fn from( src : T ) -> Self
// {
// Self::from1( src )
// }
// }
///
/// Variadic constructor.
///
/// Implement traits [`From1`] from tuple with fields and [std::convert::From] from tuple with fields to provide the interface to construct your structure with a different set of arguments.
/// In this example structure, Struct1 could be constructed either without arguments, with a single argument, or with two arguments.
/// - Constructor without arguments fills fields with zero.
/// - Constructor with a single argument sets both fields to the value of the argument.
/// - Constructor with 2 arguments set individual values of each field.
///
/// ```rust
/// # #[ cfg( all( feature = "derive_variadic_from", feature = "type_variadic_from" ) ) ]
/// # {
/// use variadic_from::prelude::*;
///
/// #[ derive( Debug, PartialEq ) ]
/// struct Struct1
/// {
/// a : i32,
/// b : i32,
/// }
///
/// impl Default for Struct1
/// {
/// fn default() -> Self
/// {
/// Self { a : 0, b : 0 }
/// }
/// }
///
/// impl From1< i32 > for Struct1
/// {
/// fn from1( val : i32 ) -> Self
/// {
/// Self { a : val, b : val }
/// }
/// }
///
/// impl From2< i32, i32 > for Struct1
/// {
/// fn from2( val1 : i32, val2 : i32 ) -> Self
/// {
/// Self { a : val1, b : val2 }
/// }
/// }
///
/// let got : Struct1 = from!();
/// let exp = Struct1{ a : 0, b : 0 };
/// assert_eq!( got, exp );
///
/// let got : Struct1 = from!( 13 );
/// let exp = Struct1{ a : 13, b : 13 };
/// assert_eq!( got, exp );
///
/// let got : Struct1 = from!( 1, 3 );
/// let exp = Struct1{ a : 1, b : 3 };
/// assert_eq!( got, exp );
/// # }
///
/// ```
///
/// ### To add to your project
///
/// ``` shell
/// cargo add type_constructor
/// ```
///
/// ## Try out from the repository
///
/// ``` shell test
/// git clone https://github.com/Wandalen/wTools
/// cd wTools
/// cd examples/type_constructor_trivial
/// cargo run
/// ```
#[ macro_export ]
macro_rules! from
{
(
$(,)?
)
=>
{
::core::default::Default::default();
};
(
$Arg1 : expr $(,)?
)
=>
{
$crate::From1::from1( $Arg1 );
};
(
$Arg1 : expr, $Arg2 : expr $(,)?
)
=>
{
$crate::From2::from2( $Arg1, $Arg2 );
};
(
$Arg1 : expr, $Arg2 : expr, $Arg3 : expr $(,)?
)
=>
{
$crate::From3::from3( $Arg1, $Arg2, $Arg3 );
};
// (
// $Arg1 : expr, $Arg2 : expr, $Arg3 : expr, $Arg4 : expr $(,)?
// )
// =>
// {
// $crate::From4::from4( $Arg1, $Arg2, $Arg3, $Arg4 );
// };
(
$( $Rest : tt )+
)
=>
{
compile_error!
(
concat!
(
"Variadic constructor supports up to 3 arguments.\n",
"Open an issue if you need more.\n",
"You passed:\n",
stringify!
(
from!( $( $Rest )+ )
)
)
);
};
}
pub use from;
}
/// Own namespace of the module.
#[ allow( unused_imports ) ]
pub mod own
{
use super::*;
#[ doc( inline ) ]
pub use orphan::*;
}
#[ doc( inline ) ]
#[ allow( unused_imports ) ]
pub use own::*;
/// Orphan namespace of the module.
#[ allow( unused_imports ) ]
pub mod orphan
{
use super::*;
#[ doc( inline ) ]
pub use exposed::*;
#[ doc( inline ) ]
pub use private::
{
};
}
/// Exposed namespace of the module.
#[ allow( unused_imports ) ]
pub mod exposed
{
use super::*;
#[ doc( inline ) ]
pub use prelude::*;
}
/// Prelude to use essentials: `use my_module::prelude::*`.
#[ allow( unused_imports ) ]
pub mod prelude
{
use super::*;
#[ doc( inline ) ]
pub use private::
{
// From_0,
From1,
Into1,
From2,
From3,
from,
};
// pub use type_constructor_from_meta::VariadicFrom;
}