-
Announcing Rust 1.64.0 ❤️| Rust Blog코딩Coding/Rust☑︎Release☀︎Notes_New◎Version 2022. 9. 23. 07:18728x90
https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html
WhatRustisit 참조
https://www.whatrustisit.com/https://github.com/rust-lang/rust/blob/1.64.0/RELEASES.md
core::ffi c_char Equivalent to C's char type. c_double Equivalent to C's double type. c_float Equivalent to C's float type. c_int Equivalent to C's signed int(int) type. c_long Equivalent to C's signed long(long) type. c_longlong Equivalent to C's signed long long(long long) type. c_schar Equivalent to C's signed char type. c_short Equivalent to C's signed short(short) type. c_uchar Equivalent to C's unsigned char type. c_uint Equivalent to C's unsigned int type. c_ulong Equivalent to C's unsigned long type. c_ulonglong Equivalent to C's unsigned long long type. c_ushort Equivalent to C's unsigned short type. CStr Representation of a borrowed C string.
https://doc.rust-lang.org/stable/std/future/trait.IntoFuture.html
예제 참조해서 만들 예정
https://github.com/dcchut/ststracker-server
Because `fetch_sub` is already atomic, we do not need to synchronize with other threads unless we are going to delete the object. This same logic applies to the below `fetch_sub` to the `weak` count.
rust 1.64 내용중
'fetch_sub'는 이미 원자이므로 개체를 삭제하지 않는 한 다른 스레드와 동기화할 필요가 없습니다. 이 같은 논리는 아래의 'fetch_sub'에 'weak' 카운트에 적용된다.
변역기 돌린 한글
fn drop(&mut self) { // Because `fetch_sub` is already atomic, we do not need to synchronize // with other threads unless we are going to delete the object. This // same logic applies to the below `fetch_sub` to the `weak` count. if self.inner().strong.fetch_sub(1, Release) != 1 { return; }
출처 : 공식 문서 중하단쯤 나옴. find로 찾을것!!
https://doc.rust-lang.org/std/sync/struct.Arc.html
Asynchronous Programming in Rust
https://rust-lang.github.io/async-book/01_getting_started/04_async_await_primer.html
러스트로 금융툴 만들기! 제6부 Making a finance tool with Rust! Part 6
https://www.youtube.com/watch?v=mWfshZP9MZg&t=284s
How can I determine if I have a unique Arc when it's dropped?
https://economiceco.tistory.com/7872
https://github.com/usagi/rust-memory-container-cs
Upgrade version!! https://github.com/usagi/rust-memory-container-cs
출처: https://economiceco.tistory.com/7872
[경제PLUS:티스토리]
How much expensive is Arc vs Rc? Arc의 Cost는 얼마나 많은 Cost를 지불하는지 에 대한 논문
How much expensive is Arc vs Rc? Arc의 Cost는 얼마나 많은 Cost를 지불하는지 에 대한 논문
출처: https://economiceco.tistory.com/15115 [경제PLUS:티스토리]
반응형'코딩Coding > Rust☑︎Release☀︎Notes_New◎Version' 카테고리의 다른 글
러스트 1.64.0 버전을 공개_러스트, C언어와 연계성 강화_한글 뉴스 좀 늦네 ㅋㅋ (0) 2022.10.20 러스트 1.63.0 버전 출시_한글 뉴스도 나오네 ㅎㅎ (0) 2022.10.20 한글러스트Rust강의_042⭐️Rust1.64_Release업데이트 나름 정리 해봄Helix에디터로 (0) 2022.09.27 Rust 1.64 update 내용__Arc_drop 관련 업데이트 내용 분석중 ㅠㅠ (0) 2022.09.24 Rust 1.63.0 (0) 2022.09.18 Rust❤️1.63❤️Scoped threads in Rust (0) 2022.08.26 1.63에 적용된 f64내용 (0) 2022.08.17 Rust 1.63.0 Released 획기적인 업데이트 내용 16 가지 (0) 2022.08.12