2013-08-10 08:38:00 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-09-22 15:43:47 -05:00
|
|
|
//! The `Default` trait for types which may have meaningful default values.
|
|
|
|
//!
|
|
|
|
//! Sometimes, you want to fall back to some kind of default value, and
|
|
|
|
//! don't particularly care what it is. This comes up often with `struct`s
|
|
|
|
//! that define a set of options:
|
|
|
|
//!
|
|
|
|
//! ```
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #[allow(dead_code)]
|
2014-09-22 15:43:47 -05:00
|
|
|
//! struct SomeOptions {
|
2015-02-18 07:41:13 -06:00
|
|
|
//! foo: i32,
|
2014-09-22 15:43:47 -05:00
|
|
|
//! bar: f32,
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! How can we define some default values? You can use `Default`:
|
|
|
|
//!
|
|
|
|
//! ```
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #[allow(dead_code)]
|
2015-01-03 21:54:18 -06:00
|
|
|
//! #[derive(Default)]
|
2014-09-22 15:43:47 -05:00
|
|
|
//! struct SomeOptions {
|
2015-02-18 07:41:13 -06:00
|
|
|
//! foo: i32,
|
2014-09-22 15:43:47 -05:00
|
|
|
//! bar: f32,
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! let options: SomeOptions = Default::default();
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! Now, you get all of the default values. Rust implements `Default` for various primitives types.
|
|
|
|
//! If you have your own type, you need to implement `Default` yourself:
|
|
|
|
//!
|
|
|
|
//! ```
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #![allow(dead_code)]
|
2014-09-22 15:43:47 -05:00
|
|
|
//! enum Kind {
|
|
|
|
//! A,
|
|
|
|
//! B,
|
|
|
|
//! C,
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! impl Default for Kind {
|
2014-11-06 02:05:53 -06:00
|
|
|
//! fn default() -> Kind { Kind::A }
|
2014-09-22 15:43:47 -05:00
|
|
|
//! }
|
|
|
|
//!
|
2015-01-03 21:54:18 -06:00
|
|
|
//! #[derive(Default)]
|
2014-09-22 15:43:47 -05:00
|
|
|
//! struct SomeOptions {
|
2015-02-18 07:41:13 -06:00
|
|
|
//! foo: i32,
|
2014-09-22 15:43:47 -05:00
|
|
|
//! bar: f32,
|
|
|
|
//! baz: Kind,
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
|
|
|
//! let options: SomeOptions = Default::default();
|
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! If you want to override a particular option, but still retain the other defaults:
|
|
|
|
//!
|
|
|
|
//! ```
|
2015-11-03 09:27:03 -06:00
|
|
|
//! # #[allow(dead_code)]
|
2015-01-03 21:54:18 -06:00
|
|
|
//! # #[derive(Default)]
|
2014-09-22 15:43:47 -05:00
|
|
|
//! # struct SomeOptions {
|
2015-02-18 07:41:13 -06:00
|
|
|
//! # foo: i32,
|
2014-09-22 15:43:47 -05:00
|
|
|
//! # bar: f32,
|
|
|
|
//! # }
|
|
|
|
//! fn main() {
|
|
|
|
//! let options = SomeOptions { foo: 42, ..Default::default() };
|
|
|
|
//! }
|
|
|
|
//! ```
|
2013-08-10 08:38:00 -05:00
|
|
|
|
2015-01-23 23:48:20 -06:00
|
|
|
#![stable(feature = "rust1", since = "1.0.0")]
|
2014-07-18 18:01:55 -05:00
|
|
|
|
2015-10-23 20:51:38 -05:00
|
|
|
use marker::Sized;
|
|
|
|
|
2016-05-23 11:52:38 -05:00
|
|
|
/// A trait for giving a type a useful default value.
|
|
|
|
///
|
|
|
|
/// For more information, see
|
2016-05-22 18:24:58 -05:00
|
|
|
/// [the module-level documentation][module].
|
2014-09-22 15:43:47 -05:00
|
|
|
///
|
2016-05-22 18:24:58 -05:00
|
|
|
/// [module]: ../../std/default/index.html
|
|
|
|
///
|
|
|
|
/// ## Derivable
|
|
|
|
///
|
|
|
|
/// This trait can be used with `#[derive]` if all of the type's fields implement
|
|
|
|
/// `Default`. When `derive`d, it will use the default value for each field's type.
|
|
|
|
///
|
|
|
|
/// ## How can I implement `Default`?
|
|
|
|
///
|
|
|
|
/// Provide an implementation for the `default()` method that returns the value of
|
|
|
|
/// your type that should be the default:
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # #![allow(dead_code)]
|
|
|
|
/// enum Kind {
|
|
|
|
/// A,
|
|
|
|
/// B,
|
|
|
|
/// C,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// impl Default for Kind {
|
|
|
|
/// fn default() -> Kind { Kind::A }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2014-09-22 15:43:47 -05:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2015-11-03 09:27:03 -06:00
|
|
|
/// # #[allow(dead_code)]
|
2015-01-03 21:54:18 -06:00
|
|
|
/// #[derive(Default)]
|
2014-09-22 15:43:47 -05:00
|
|
|
/// struct SomeOptions {
|
2015-02-18 07:41:13 -06:00
|
|
|
/// foo: i32,
|
2014-09-22 15:43:47 -05:00
|
|
|
/// bar: f32,
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-10-23 20:51:38 -05:00
|
|
|
pub trait Default: Sized {
|
2014-09-22 15:43:47 -05:00
|
|
|
/// Returns the "default value" for a type.
|
2014-07-19 05:10:09 -05:00
|
|
|
///
|
2014-09-22 15:43:47 -05:00
|
|
|
/// Default values are often some kind of initial value, identity value, or anything else that
|
|
|
|
/// may make sense as a default.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// Using built-in default values:
|
2014-07-19 05:10:09 -05:00
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// let i: i8 = Default::default();
|
|
|
|
/// let (x, y): (Option<String>, f64) = Default::default();
|
2015-02-18 07:41:13 -06:00
|
|
|
/// let (a, b, (c, d)): (i32, u32, (bool, bool)) = Default::default();
|
2014-07-19 05:10:09 -05:00
|
|
|
/// ```
|
2014-09-22 15:43:47 -05:00
|
|
|
///
|
|
|
|
/// Making your own:
|
|
|
|
///
|
|
|
|
/// ```
|
2015-11-03 09:27:03 -06:00
|
|
|
/// # #[allow(dead_code)]
|
2014-09-22 15:43:47 -05:00
|
|
|
/// enum Kind {
|
|
|
|
/// A,
|
|
|
|
/// B,
|
|
|
|
/// C,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// impl Default for Kind {
|
2014-11-06 02:05:53 -06:00
|
|
|
/// fn default() -> Kind { Kind::A }
|
2014-09-22 15:43:47 -05:00
|
|
|
/// }
|
|
|
|
/// ```
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2013-08-10 08:38:00 -05:00
|
|
|
fn default() -> Self;
|
|
|
|
}
|
2013-09-11 23:49:25 -05:00
|
|
|
|
2014-11-14 11:18:10 -06:00
|
|
|
macro_rules! default_impl {
|
2014-05-26 12:33:04 -05:00
|
|
|
($t:ty, $v:expr) => {
|
2015-01-23 23:48:20 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2014-05-26 12:33:04 -05:00
|
|
|
impl Default for $t {
|
|
|
|
#[inline]
|
|
|
|
fn default() -> $t { $v }
|
|
|
|
}
|
|
|
|
}
|
2014-11-14 11:18:10 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
default_impl! { (), () }
|
|
|
|
default_impl! { bool, false }
|
|
|
|
default_impl! { char, '\x00' }
|
2014-05-26 12:33:04 -05:00
|
|
|
|
2015-02-18 07:41:13 -06:00
|
|
|
default_impl! { usize, 0 }
|
2015-01-22 08:08:56 -06:00
|
|
|
default_impl! { u8, 0 }
|
|
|
|
default_impl! { u16, 0 }
|
|
|
|
default_impl! { u32, 0 }
|
|
|
|
default_impl! { u64, 0 }
|
2014-05-26 12:33:04 -05:00
|
|
|
|
2015-02-18 07:41:13 -06:00
|
|
|
default_impl! { isize, 0 }
|
2015-01-22 08:08:56 -06:00
|
|
|
default_impl! { i8, 0 }
|
|
|
|
default_impl! { i16, 0 }
|
|
|
|
default_impl! { i32, 0 }
|
|
|
|
default_impl! { i64, 0 }
|
2014-05-26 12:33:04 -05:00
|
|
|
|
2014-11-14 11:18:10 -06:00
|
|
|
default_impl! { f32, 0.0f32 }
|
|
|
|
default_impl! { f64, 0.0f64 }
|