Skip to content

Commit c28f819

Browse files
committed
update doc visibility
1 parent 2d35cc1 commit c28f819

33 files changed

+1
-54
lines changed

src/rsfml/audio/music.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ pub mod ffi {
8484
}
8585
}
8686

87-
#[doc(hidden)]
8887
pub struct Music {
8988
priv music : *ffi::sfMusic
9089
}

src/rsfml/audio/sound.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ pub mod ffi {
8383
}
8484
}
8585

86-
#[doc(hidden)]
8786
pub struct Sound<'self> {
8887
priv sound : *ffi::sfSound,
8988
priv buffer : &'self SoundBuffer

src/rsfml/audio/sound_buffer.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ pub mod ffi {
5959
}
6060
}
6161

62-
#[doc(hidden)]
6362
pub struct SoundBuffer {
6463
priv sound_buffer : *ffi::sfSoundBuffer,
6564
priv dropable : bool
@@ -208,7 +207,6 @@ impl SoundBuffer {
208207
}
209208
}
210209

211-
#[doc(hidden)]
212210
impl Wrappable<*ffi::sfSoundBuffer> for SoundBuffer {
213211
fn wrap(buffer : *ffi::sfSoundBuffer) -> SoundBuffer {
214212
SoundBuffer {

src/rsfml/audio/sound_buffer_recorder.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ pub mod ffi {
5555
}
5656
}
5757

58-
#[doc(hidden)]
5958
pub struct SoundBufferRecorder {
6059
priv sound_buffer_recorder : *ffi::sfSoundBufferRecorder
6160
}

src/rsfml/audio/sound_recorder.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ pub mod ffi{
5353
}
5454
}
5555

56-
#[doc(hidden)]
5756
pub struct SoundRecorder {
5857
priv sound_recorder : *ffi::sfSoundRecorder
5958
}

src/rsfml/graphics/circle_shape.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ pub mod ffi {
100100
}
101101
}
102102

103-
#[doc(hidden)]
104103
pub struct CircleShape<'self> {
105104
priv circle_shape : *ffi::sfCircleShape,
106105
priv texture : Option<&'self Texture>
@@ -750,7 +749,6 @@ impl<'self> CircleShape<'self> {
750749

751750
}
752751

753-
#[doc(hidden)]
754752
impl<'self> Wrappable<*ffi::sfCircleShape> for CircleShape<'self> {
755753
#[doc(hidden)]
756754
fn wrap(circle_shape : *ffi::sfCircleShape) -> CircleShape {

src/rsfml/graphics/convex_shape.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ pub mod ffi {
9999
}
100100
}
101101

102-
#[doc(hidden)]
103102
pub struct ConvexShape<'self> {
104103
priv convex_shape : *ffi::sfConvexShape,
105104
priv texture : Option<&'self Texture>

src/rsfml/graphics/font.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ pub mod ffi {
6363
}
6464
}
6565

66-
#[doc(hidden)]
6766
pub struct Font {
6867
priv font : *ffi::sfFont,
6968
priv dropable : bool
@@ -187,7 +186,6 @@ impl Font {
187186
}
188187
}
189188

190-
#[doc(hidden)]
191189
impl Wrappable<*ffi::sfFont> for Font {
192190
fn wrap(font : *ffi::sfFont) -> Font {
193191
Font {

src/rsfml/graphics/image.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ pub mod ffi {
7373
}
7474
}
7575

76-
#[doc(hidden)]
7776
pub struct Image {
7877
priv image : *ffi::sfImage
7978
}
@@ -347,7 +346,6 @@ impl Image {
347346

348347
}
349348

350-
#[doc(hidden)]
351349
impl Wrappable<*ffi::sfImage> for Image {
352350
fn wrap(image : *ffi::sfImage) -> Image {
353351
Image {

src/rsfml/graphics/rectangle_shape.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ pub mod ffi {
9898
}
9999
}
100100

101-
#[doc(hidden)]
102101
pub struct RectangleShape<'self> {
103102
priv rectangle_shape : *ffi::sfRectangleShape,
104103
priv texture : Option<&'self Texture>
@@ -747,7 +746,6 @@ impl<'self> RectangleShape<'self> {
747746
}
748747
}
749748

750-
#[doc(hidden)]
751749
impl<'self> Wrappable<*ffi::sfRectangleShape> for RectangleShape<'self> {
752750
fn wrap(rectangle_shape : *ffi::sfRectangleShape) -> RectangleShape {
753751
RectangleShape {

0 commit comments

Comments
 (0)