mirror of
https://github.com/servo/servo.git
synced 2025-08-04 21:20:23 +01:00
Fix some private type export warnings
This commit is contained in:
parent
812d70942f
commit
e656f1efff
1 changed files with 2 additions and 2 deletions
|
@ -189,9 +189,9 @@ impl<'a,QUD,WUD:Send> WorkerProxy<'a,QUD,WUD> {
|
||||||
/// A work queue on which units of work can be submitted.
|
/// A work queue on which units of work can be submitted.
|
||||||
pub struct WorkQueue<QUD,WUD> {
|
pub struct WorkQueue<QUD,WUD> {
|
||||||
/// Information about each of the workers.
|
/// Information about each of the workers.
|
||||||
pub workers: ~[WorkerInfo<QUD,WUD>],
|
workers: ~[WorkerInfo<QUD,WUD>],
|
||||||
/// A port on which deques can be received from the workers.
|
/// A port on which deques can be received from the workers.
|
||||||
pub port: Receiver<SupervisorMsg<QUD,WUD>>,
|
port: Receiver<SupervisorMsg<QUD,WUD>>,
|
||||||
/// The amount of work that has been enqueued.
|
/// The amount of work that has been enqueued.
|
||||||
pub work_count: uint,
|
pub work_count: uint,
|
||||||
/// Arbitrary user data.
|
/// Arbitrary user data.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue