1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// This file is part of libc-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT. No part of libc-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file. // Copyright © 2016-2018 The developers of libc-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT. pub const SPEED_10: ssize_t = 10; pub const SPEED_100: ssize_t = 100; pub const SPEED_1000: ssize_t = 1000; pub const SPEED_2500: ssize_t = 2500; pub const SPEED_5000: ssize_t = 5000; pub const SPEED_10000: ssize_t = 10000; pub const SPEED_20000: ssize_t = 20000; pub const SPEED_25000: ssize_t = 25000; pub const SPEED_40000: ssize_t = 40000; pub const SPEED_50000: ssize_t = 50000; pub const SPEED_56000: ssize_t = 56000; pub const SPEED_100000: ssize_t = 100000; pub const SPEED_UNKNOWN: ssize_t = -1;