libc_extra/android_linux/linux/ethtool/constants/
SPEED.rs

1// 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.
2// 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.
3
4
5pub const SPEED_10: ssize_t = 10;
6pub const SPEED_100: ssize_t = 100;
7pub const SPEED_1000: ssize_t = 1000;
8pub const SPEED_2500: ssize_t = 2500;
9pub const SPEED_5000: ssize_t = 5000;
10pub const SPEED_10000: ssize_t = 10000;
11pub const SPEED_20000: ssize_t = 20000;
12pub const SPEED_25000: ssize_t = 25000;
13pub const SPEED_40000: ssize_t = 40000;
14pub const SPEED_50000: ssize_t = 50000;
15pub const SPEED_56000: ssize_t = 56000;
16pub const SPEED_100000: ssize_t = 100000;
17pub const SPEED_UNKNOWN: ssize_t = -1;