Lines Matching defs:channel
60 //! * Check that the running compiler is on the stable channel:
67 //! Some(c) => format!("No, the channel {} is not stable.", c),
72 //! To interact with the version, release date, and release channel as structs,
86 mod channel;
93 #[doc(inline)] pub use channel::*;
152 Some(channel) => match Date::parse(&date_str) {
153 Some(date) => Some((version, channel, date)),
259 /// In other words, if the channel is either "nightly" or "dev".
433 fn read_static(verbose: bool, channel: &str, minor: usize) -> String {
440 .join(channel)
485 let (version, channel) = (::Version::read(), ::Channel::read());
487 assert!(channel.is_some());
490 assert_eq!(channel, ::Channel::parse(&known_channel));