mirror of
https://gitee.com/openharmony/third_party_rust_nix
synced 2025-01-20 22:54:26 +00:00
Deprecate SockAddr/InetAddr::to_str
This commit is contained in:
parent
7207004e10
commit
c96141d423
@ -78,6 +78,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
||||
Rustc and Xcode.
|
||||
(#[1492](https://github.com/nix-rust/nix/pull/1492))
|
||||
|
||||
- Deprecated `SockAddr/InetAddr::to_str` in favor of `ToString::to_string`
|
||||
(#[1495](https://github.com/nix-rust/nix/pull/1495))
|
||||
|
||||
## [0.22.0] - 9 July 2021
|
||||
### Added
|
||||
- Added `if_nameindex` (#[1445](https://github.com/nix-rust/nix/pull/1445))
|
||||
|
@ -344,6 +344,7 @@ impl InetAddr {
|
||||
}
|
||||
}
|
||||
|
||||
#[deprecated(since = "0.23.0", note = "use .to_string() instead")]
|
||||
pub fn to_str(&self) -> String {
|
||||
format!("{}", self)
|
||||
}
|
||||
@ -722,6 +723,7 @@ impl SockAddr {
|
||||
}
|
||||
}
|
||||
|
||||
#[deprecated(since = "0.23.0", note = "use .to_string() instead")]
|
||||
pub fn to_str(&self) -> String {
|
||||
format!("{}", self)
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ pub fn test_inetv4_addr_to_sock_addr() {
|
||||
_ => panic!("nope"),
|
||||
}
|
||||
|
||||
assert_eq!(addr.to_str(), "127.0.0.1:3000");
|
||||
assert_eq!(addr.to_string(), "127.0.0.1:3000");
|
||||
|
||||
let inet = addr.to_std();
|
||||
assert_eq!(actual, inet);
|
||||
@ -194,8 +194,8 @@ pub fn test_getsockname() {
|
||||
.expect("socket failed");
|
||||
let sockaddr = SockAddr::new_unix(&sockname).unwrap();
|
||||
bind(sock, &sockaddr).expect("bind failed");
|
||||
assert_eq!(sockaddr.to_str(),
|
||||
getsockname(sock).expect("getsockname failed").to_str());
|
||||
assert_eq!(sockaddr.to_string(),
|
||||
getsockname(sock).expect("getsockname failed").to_string());
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
Loading…
x
Reference in New Issue
Block a user