intrinsics_fn_copy

intrinsics_fn_copy ((별칭) ptr::copy)

ptr::copy 의 우연히 안정화된 별칭이에요.

출처: Rust 공식 문서

본문

이것은 ptr::copy 의 우연히 안정화된 별칭이에요. 대신 std::ptr 을 통해 이 함수를 가져와 사용하세요.

pub const unsafe fn copy<T>(src: *const T , dst: *mut T , count: usize ) 👎 Deprecated: import this function via std::ptr instead

더 알아보기 (Learn more)

Rust 공식 문서