rust/tests/rustdoc/search-index.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
513 B
Rust
Raw Normal View History

#![crate_name = "rustdoc_test"]
use std::ops::Deref;
// @hasraw search-index.js Foo
pub use private::Foo;
mod private {
pub struct Foo;
impl Foo {
pub fn test_method() {} // @hasraw - test_method
2022-08-12 04:44:07 +00:00
fn priv_method() {} // @!hasraw - priv_method
}
pub trait PrivateTrait {
2022-08-12 04:44:07 +00:00
fn trait_method(&self) {} // @!hasraw - priv_method
}
}
pub struct Bar;
impl Deref for Bar {
2022-08-12 04:44:07 +00:00
// @!hasraw search-index.js Target
type Target = Bar;
fn deref(&self) -> &Bar { self }
}