Skip to content

Commit dc14300

Browse files
committed
pub => pub(crate)
1 parent 5d74786 commit dc14300

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/src/reactive/flat_fat.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use alga::general::AbstractMonoid;
22
use alga::general::Operator;
33
use std::collections::HashSet;
44

5-
pub trait FAT<Value, BinOp>
5+
pub(crate) trait FAT<Value, BinOp>
66
where
77
Value: AbstractMonoid<BinOp> + Clone,
88
BinOp: Operator,
@@ -33,7 +33,7 @@ where
3333
fn suffix(&self, i: usize) -> Value;
3434
}
3535

36-
pub struct FlatFAT<Value, BinOp>
36+
pub(crate) struct FlatFAT<Value, BinOp>
3737
where
3838
Value: AbstractMonoid<BinOp> + Clone,
3939
BinOp: Operator,

0 commit comments

Comments
 (0)