devela_base_std 0.26.0

base std shared functionality for devela
Documentation
// devela_base_std::work::thread::_reexport
//
//!
//
// Note that std's standalone functions are namespaced in `devela::ThreadExt`.

use crate::{
    _TAG_CODE, _TAG_CONCURRENCY, _TAG_CONSTRUCTION, _TAG_ERROR, _TAG_RESULT, _TAG_UID, _reexport,
};

/* types */

_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!() _TAG_ERROR!(),
    doc: "An error returned by [`ThreadLocalKey::try_with`].",
    @AccessError as ThreadAccessError
}
_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONSTRUCTION!() _TAG_CONCURRENCY!(),
    doc: "Thread factory, which can be used to configure the properties of a new thread.",
    @Builder as ThreadBuilder
}
_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!(),
    doc: "An owned permission to join on a thread (block on its termination).",
    @JoinHandle as ThreadJoinHandle
}
_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!(),
    doc: "A thread local storage key which owns its contents.",
    @LocalKey as ThreadLocalKey
}
_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!(),
    doc: "A scope to spawn scoped threads in.",
    @Scope as ThreadScope
}
_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!(),
    doc: "An owned permission to join on a scoped thread (block on its termination).",
    @ScopedJoinHandle as ThreadScopedJoinHandle
}
_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!() _TAG_UID!(),
    doc: "A handle to a thread.",
    +doc: "See also the [`ThreadExt`][crate::ThreadExt] trait.",
    Thread
}
_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!() _TAG_UID!(),
    doc: "A unique identifier for a running thread.",
    ThreadId
}

/* macros */

_reexport! { rust: std,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!() _TAG_CODE!(),
    doc: "Declare a new thread local storage key of type [`ThreadLocalKey`].",
    thread_local
}

/* aliases */

_reexport! { rust: std::thread,
    location: "work/thread",
    tag: _TAG_CONCURRENCY!() _TAG_RESULT!(),
    doc: "A specialized [`Result`] type for threads.",
    @Result as ThreadResult
}