aya.txt 938 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432
  1. pub mod aya
  2. pub use aya::Btf
  3. pub use aya::BtfError
  4. pub use aya::Endianness
  5. pub use aya::PinningType
  6. pub use aya::bpf_map_def
  7. pub mod aya::maps
  8. pub mod aya::maps::array
  9. pub struct aya::maps::array::Array<T, V: aya::Pod>
  10. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  11. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  12. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  13. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  14. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  15. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  16. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  17. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  18. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  19. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  20. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  21. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  22. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  23. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  24. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  25. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  26. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  27. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  28. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  29. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  30. impl<T, V> core::marker::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  31. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  32. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  33. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  34. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  35. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  36. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  37. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  38. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  39. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  40. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  41. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  42. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  43. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  44. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  45. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  46. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  47. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  48. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  49. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  50. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  51. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  52. pub struct aya::maps::array::PerCpuArray<T, V: aya::Pod>
  53. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  54. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  55. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  56. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  57. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  58. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  59. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  60. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  61. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  62. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  63. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  64. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  65. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  66. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  67. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  68. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  69. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  70. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  71. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  72. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  73. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  74. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  75. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  76. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  77. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  78. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  79. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  80. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  81. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  82. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  83. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  84. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  85. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  86. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  87. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  88. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  89. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  90. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  91. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  92. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  93. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  94. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  95. pub struct aya::maps::array::ProgramArray<T>
  96. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  97. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  98. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  99. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  100. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  101. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  102. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  103. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  104. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  105. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  106. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  107. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  108. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  109. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  110. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  111. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  112. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  113. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  114. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  115. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  116. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  117. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  118. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  119. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  120. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  121. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  122. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  123. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  124. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  125. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  126. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  127. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  128. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  129. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  130. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  131. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  132. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  133. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  134. pub mod aya::maps::bloom_filter
  135. pub struct aya::maps::bloom_filter::BloomFilter<T, V: aya::Pod>
  136. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  137. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  138. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  139. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  140. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  141. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  142. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  143. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  144. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  145. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  146. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  147. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  148. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  149. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  150. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  151. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  152. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  153. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  154. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  155. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  156. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  157. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  158. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  159. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  160. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  161. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  162. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  163. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  164. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  165. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  166. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  167. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  168. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  169. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  170. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  171. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  172. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  173. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  174. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  175. pub mod aya::maps::hash_map
  176. pub struct aya::maps::hash_map::HashMap<T, K, V>
  177. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  178. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  179. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  180. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  181. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  182. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  183. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  184. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  185. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  186. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  187. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  188. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  189. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  190. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  191. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  192. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  193. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  194. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  195. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  196. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  197. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  198. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  199. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  200. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  201. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  202. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  203. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  204. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  205. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  206. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  207. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  208. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  209. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  210. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  211. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  212. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  213. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  214. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  215. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  216. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  217. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  218. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  219. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  220. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  221. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  222. pub struct aya::maps::hash_map::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  223. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  224. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  225. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  226. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  227. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  228. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  229. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  230. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  231. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  232. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  233. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  234. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  235. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  236. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  237. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  238. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  239. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  240. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  241. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  242. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  243. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  244. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  245. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  246. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  247. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  248. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  249. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  250. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  251. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  252. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  253. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  254. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  255. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  256. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  257. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  258. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  259. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  260. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  261. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  262. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  263. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  264. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  265. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  266. pub mod aya::maps::lpm_trie
  267. #[repr(C, packed(1))] pub struct aya::maps::lpm_trie::Key<K: aya::Pod>
  268. impl<K: aya::Pod> aya::maps::lpm_trie::Key<K>
  269. pub fn aya::maps::lpm_trie::Key<K>::data(&self) -> K
  270. pub fn aya::maps::lpm_trie::Key<K>::new(prefix_len: u32, data: K) -> Self
  271. pub fn aya::maps::lpm_trie::Key<K>::prefix_len(&self) -> u32
  272. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  273. impl<K: aya::Pod> core::clone::Clone for aya::maps::lpm_trie::Key<K>
  274. pub fn aya::maps::lpm_trie::Key<K>::clone(&self) -> Self
  275. impl<K: aya::Pod> core::marker::Copy for aya::maps::lpm_trie::Key<K>
  276. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  277. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  278. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  279. impl<K> core::marker::Freeze for aya::maps::lpm_trie::Key<K> where K: core::marker::Freeze
  280. impl<K> core::marker::Send for aya::maps::lpm_trie::Key<K> where K: core::marker::Send
  281. impl<K> core::marker::Sync for aya::maps::lpm_trie::Key<K> where K: core::marker::Sync
  282. impl<K> core::marker::Unpin for aya::maps::lpm_trie::Key<K> where K: core::marker::Unpin
  283. impl<K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::RefUnwindSafe
  284. impl<K> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::UnwindSafe
  285. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::From<T>
  286. pub fn aya::maps::lpm_trie::Key<K>::into(self) -> U
  287. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::Into<T>
  288. pub type aya::maps::lpm_trie::Key<K>::Error = core::convert::Infallible
  289. pub fn aya::maps::lpm_trie::Key<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  290. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::TryFrom<T>
  291. pub type aya::maps::lpm_trie::Key<K>::Error = <U as core::convert::TryFrom<T>>::Error
  292. pub fn aya::maps::lpm_trie::Key<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  293. impl<T> alloc::borrow::ToOwned for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  294. pub type aya::maps::lpm_trie::Key<K>::Owned = T
  295. pub fn aya::maps::lpm_trie::Key<K>::clone_into(&self, target: &mut T)
  296. pub fn aya::maps::lpm_trie::Key<K>::to_owned(&self) -> T
  297. impl<T> core::any::Any for aya::maps::lpm_trie::Key<K> where T: 'static + ?core::marker::Sized
  298. pub fn aya::maps::lpm_trie::Key<K>::type_id(&self) -> core::any::TypeId
  299. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  300. pub fn aya::maps::lpm_trie::Key<K>::borrow(&self) -> &T
  301. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::Key<K> where T: ?core::marker::Sized
  302. pub fn aya::maps::lpm_trie::Key<K>::borrow_mut(&mut self) -> &mut T
  303. impl<T> core::clone::CloneToUninit for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  304. pub unsafe fn aya::maps::lpm_trie::Key<K>::clone_to_uninit(&self, dest: *mut u8)
  305. impl<T> core::convert::From<T> for aya::maps::lpm_trie::Key<K>
  306. pub fn aya::maps::lpm_trie::Key<K>::from(t: T) -> T
  307. pub struct aya::maps::lpm_trie::LpmTrie<T, K, V>
  308. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  309. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  310. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  311. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  312. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  313. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  314. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  315. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  316. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  317. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  318. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  319. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  320. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  321. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  322. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  323. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  324. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  325. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  326. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  327. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  328. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  329. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  330. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  331. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  332. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  333. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  334. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  335. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  336. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  337. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  338. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  339. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  340. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  341. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  342. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  343. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  344. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  345. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  346. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  347. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  348. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  349. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  350. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  351. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  352. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  353. pub mod aya::maps::perf
  354. pub enum aya::maps::perf::PerfBufferError
  355. pub aya::maps::perf::PerfBufferError::IOError(std::io::error::Error)
  356. pub aya::maps::perf::PerfBufferError::InvalidPageCount
  357. pub aya::maps::perf::PerfBufferError::InvalidPageCount::page_count: usize
  358. pub aya::maps::perf::PerfBufferError::MMapError
  359. pub aya::maps::perf::PerfBufferError::MMapError::io_error: std::io::error::Error
  360. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded
  361. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded::size: usize
  362. pub aya::maps::perf::PerfBufferError::NoBuffers
  363. pub aya::maps::perf::PerfBufferError::OpenError
  364. pub aya::maps::perf::PerfBufferError::OpenError::io_error: std::io::error::Error
  365. pub aya::maps::perf::PerfBufferError::PerfEventEnableError
  366. pub aya::maps::perf::PerfBufferError::PerfEventEnableError::io_error: std::io::error::Error
  367. impl core::convert::From<std::io::error::Error> for aya::maps::perf::PerfBufferError
  368. pub fn aya::maps::perf::PerfBufferError::from(source: std::io::error::Error) -> Self
  369. impl core::error::Error for aya::maps::perf::PerfBufferError
  370. pub fn aya::maps::perf::PerfBufferError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  371. impl core::fmt::Debug for aya::maps::perf::PerfBufferError
  372. pub fn aya::maps::perf::PerfBufferError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  373. impl core::fmt::Display for aya::maps::perf::PerfBufferError
  374. pub fn aya::maps::perf::PerfBufferError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  375. impl core::marker::Freeze for aya::maps::perf::PerfBufferError
  376. impl core::marker::Send for aya::maps::perf::PerfBufferError
  377. impl core::marker::Sync for aya::maps::perf::PerfBufferError
  378. impl core::marker::Unpin for aya::maps::perf::PerfBufferError
  379. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfBufferError
  380. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfBufferError
  381. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfBufferError where U: core::convert::From<T>
  382. pub fn aya::maps::perf::PerfBufferError::into(self) -> U
  383. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfBufferError where U: core::convert::Into<T>
  384. pub type aya::maps::perf::PerfBufferError::Error = core::convert::Infallible
  385. pub fn aya::maps::perf::PerfBufferError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  386. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfBufferError where U: core::convert::TryFrom<T>
  387. pub type aya::maps::perf::PerfBufferError::Error = <U as core::convert::TryFrom<T>>::Error
  388. pub fn aya::maps::perf::PerfBufferError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  389. impl<T> alloc::string::ToString for aya::maps::perf::PerfBufferError where T: core::fmt::Display + ?core::marker::Sized
  390. pub fn aya::maps::perf::PerfBufferError::to_string(&self) -> alloc::string::String
  391. impl<T> core::any::Any for aya::maps::perf::PerfBufferError where T: 'static + ?core::marker::Sized
  392. pub fn aya::maps::perf::PerfBufferError::type_id(&self) -> core::any::TypeId
  393. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  394. pub fn aya::maps::perf::PerfBufferError::borrow(&self) -> &T
  395. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfBufferError where T: ?core::marker::Sized
  396. pub fn aya::maps::perf::PerfBufferError::borrow_mut(&mut self) -> &mut T
  397. impl<T> core::convert::From<T> for aya::maps::perf::PerfBufferError
  398. pub fn aya::maps::perf::PerfBufferError::from(t: T) -> T
  399. pub struct aya::maps::perf::Events
  400. pub aya::maps::perf::Events::lost: usize
  401. pub aya::maps::perf::Events::read: usize
  402. impl core::cmp::Eq for aya::maps::perf::Events
  403. impl core::cmp::PartialEq for aya::maps::perf::Events
  404. pub fn aya::maps::perf::Events::eq(&self, other: &aya::maps::perf::Events) -> bool
  405. impl core::fmt::Debug for aya::maps::perf::Events
  406. pub fn aya::maps::perf::Events::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  407. impl core::marker::StructuralPartialEq for aya::maps::perf::Events
  408. impl core::marker::Freeze for aya::maps::perf::Events
  409. impl core::marker::Send for aya::maps::perf::Events
  410. impl core::marker::Sync for aya::maps::perf::Events
  411. impl core::marker::Unpin for aya::maps::perf::Events
  412. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::Events
  413. impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::Events
  414. impl<Q, K> equivalent::Equivalent<K> for aya::maps::perf::Events where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  415. pub fn aya::maps::perf::Events::equivalent(&self, key: &K) -> bool
  416. impl<T, U> core::convert::Into<U> for aya::maps::perf::Events where U: core::convert::From<T>
  417. pub fn aya::maps::perf::Events::into(self) -> U
  418. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::Events where U: core::convert::Into<T>
  419. pub type aya::maps::perf::Events::Error = core::convert::Infallible
  420. pub fn aya::maps::perf::Events::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  421. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::Events where U: core::convert::TryFrom<T>
  422. pub type aya::maps::perf::Events::Error = <U as core::convert::TryFrom<T>>::Error
  423. pub fn aya::maps::perf::Events::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  424. impl<T> core::any::Any for aya::maps::perf::Events where T: 'static + ?core::marker::Sized
  425. pub fn aya::maps::perf::Events::type_id(&self) -> core::any::TypeId
  426. impl<T> core::borrow::Borrow<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  427. pub fn aya::maps::perf::Events::borrow(&self) -> &T
  428. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::Events where T: ?core::marker::Sized
  429. pub fn aya::maps::perf::Events::borrow_mut(&mut self) -> &mut T
  430. impl<T> core::convert::From<T> for aya::maps::perf::Events
  431. pub fn aya::maps::perf::Events::from(t: T) -> T
  432. pub struct aya::maps::perf::PerfEventArray<T>
  433. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  434. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  435. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  436. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  437. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  438. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  439. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  440. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  441. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  442. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  443. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  444. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  445. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  446. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  447. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  448. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  449. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  450. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  451. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  452. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  453. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  454. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  455. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  456. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  457. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  458. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  459. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  460. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  461. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  462. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  463. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  464. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  465. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  466. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  467. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  468. pub struct aya::maps::perf::PerfEventArrayBuffer<T>
  469. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArrayBuffer<T>
  470. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::read_events(&mut self, out_bufs: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  471. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::readable(&self) -> bool
  472. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::perf::PerfEventArrayBuffer<T>
  473. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  474. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::perf::PerfEventArrayBuffer<T>
  475. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  476. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArrayBuffer<T>
  477. impl<T> core::marker::Send for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  478. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sync + core::marker::Send
  479. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArrayBuffer<T>
  480. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  481. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  482. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::From<T>
  483. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::into(self) -> U
  484. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::Into<T>
  485. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = core::convert::Infallible
  486. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  487. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  488. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  489. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  490. impl<T> core::any::Any for aya::maps::perf::PerfEventArrayBuffer<T> where T: 'static + ?core::marker::Sized
  491. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  492. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  493. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow(&self) -> &T
  494. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: ?core::marker::Sized
  495. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  496. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArrayBuffer<T>
  497. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::from(t: T) -> T
  498. pub mod aya::maps::queue
  499. pub struct aya::maps::queue::Queue<T, V: aya::Pod>
  500. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  501. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  502. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  503. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  504. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  505. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  506. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  507. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  508. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  509. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  510. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  511. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  512. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  513. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  514. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  515. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  516. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  517. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  518. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  519. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  520. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  521. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  522. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  523. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  524. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  525. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  526. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  527. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  528. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  529. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  530. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  531. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  532. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  533. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  534. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  535. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  536. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  537. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  538. pub mod aya::maps::ring_buf
  539. pub struct aya::maps::ring_buf::RingBuf<T>
  540. impl<T> aya::maps::ring_buf::RingBuf<T>
  541. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  542. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  543. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  544. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  545. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  546. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  547. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  548. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  549. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  550. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  551. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::ring_buf::RingBuf<T>
  552. pub fn aya::maps::ring_buf::RingBuf<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  553. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  554. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  555. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  556. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  557. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  558. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  559. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  560. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  561. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  562. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  563. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  564. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  565. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  566. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  567. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  568. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  569. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  570. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  571. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  572. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  573. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  574. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  575. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  576. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  577. pub struct aya::maps::ring_buf::RingBufItem<'a>
  578. impl core::fmt::Debug for aya::maps::ring_buf::RingBufItem<'_>
  579. pub fn aya::maps::ring_buf::RingBufItem<'_>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  580. impl core::ops::deref::Deref for aya::maps::ring_buf::RingBufItem<'_>
  581. pub type aya::maps::ring_buf::RingBufItem<'_>::Target = [u8]
  582. pub fn aya::maps::ring_buf::RingBufItem<'_>::deref(&self) -> &Self::Target
  583. impl core::ops::drop::Drop for aya::maps::ring_buf::RingBufItem<'_>
  584. pub fn aya::maps::ring_buf::RingBufItem<'_>::drop(&mut self)
  585. impl<'a> core::marker::Freeze for aya::maps::ring_buf::RingBufItem<'a>
  586. impl<'a> core::marker::Send for aya::maps::ring_buf::RingBufItem<'a>
  587. impl<'a> core::marker::Sync for aya::maps::ring_buf::RingBufItem<'a>
  588. impl<'a> core::marker::Unpin for aya::maps::ring_buf::RingBufItem<'a>
  589. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  590. impl<'a> !core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBufItem<'a>
  591. impl<P, T> core::ops::deref::Receiver for aya::maps::ring_buf::RingBufItem<'a> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  592. pub type aya::maps::ring_buf::RingBufItem<'a>::Target = T
  593. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::From<T>
  594. pub fn aya::maps::ring_buf::RingBufItem<'a>::into(self) -> U
  595. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::Into<T>
  596. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = core::convert::Infallible
  597. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  598. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBufItem<'a> where U: core::convert::TryFrom<T>
  599. pub type aya::maps::ring_buf::RingBufItem<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  600. pub fn aya::maps::ring_buf::RingBufItem<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  601. impl<T> core::any::Any for aya::maps::ring_buf::RingBufItem<'a> where T: 'static + ?core::marker::Sized
  602. pub fn aya::maps::ring_buf::RingBufItem<'a>::type_id(&self) -> core::any::TypeId
  603. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  604. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow(&self) -> &T
  605. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBufItem<'a> where T: ?core::marker::Sized
  606. pub fn aya::maps::ring_buf::RingBufItem<'a>::borrow_mut(&mut self) -> &mut T
  607. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBufItem<'a>
  608. pub fn aya::maps::ring_buf::RingBufItem<'a>::from(t: T) -> T
  609. pub mod aya::maps::sock
  610. pub struct aya::maps::sock::SockHash<T, K>
  611. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  612. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  613. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  614. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  615. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  616. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  617. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  618. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  619. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  620. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  621. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  622. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  623. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  624. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  625. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  626. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  627. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  628. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  629. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  630. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  631. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  632. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  633. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  634. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  635. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  636. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  637. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  638. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  639. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  640. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  641. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  642. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  643. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  644. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  645. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  646. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  647. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  648. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  649. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  650. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  651. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  652. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  653. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  654. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  655. pub struct aya::maps::sock::SockMap<T>
  656. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  657. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  658. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  659. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  660. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  661. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  662. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  663. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  664. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  665. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  666. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  667. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  668. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  669. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  670. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  671. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  672. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  673. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  674. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  675. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  676. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  677. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  678. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  679. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  680. pub fn aya::maps::SockMap<T>::into(self) -> U
  681. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  682. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  683. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  684. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  685. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  686. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  687. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  688. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  689. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  690. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  691. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  692. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  693. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  694. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  695. #[repr(transparent)] pub struct aya::maps::sock::SockMapFd(_)
  696. impl aya::maps::sock::SockMapFd
  697. pub fn aya::maps::sock::SockMapFd::try_clone(&self) -> std::io::error::Result<Self>
  698. impl std::os::fd::owned::AsFd for aya::maps::sock::SockMapFd
  699. pub fn aya::maps::sock::SockMapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  700. impl core::marker::Freeze for aya::maps::sock::SockMapFd
  701. impl core::marker::Send for aya::maps::sock::SockMapFd
  702. impl core::marker::Sync for aya::maps::sock::SockMapFd
  703. impl core::marker::Unpin for aya::maps::sock::SockMapFd
  704. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::sock::SockMapFd
  705. impl core::panic::unwind_safe::UnwindSafe for aya::maps::sock::SockMapFd
  706. impl<T, U> core::convert::Into<U> for aya::maps::sock::SockMapFd where U: core::convert::From<T>
  707. pub fn aya::maps::sock::SockMapFd::into(self) -> U
  708. impl<T, U> core::convert::TryFrom<U> for aya::maps::sock::SockMapFd where U: core::convert::Into<T>
  709. pub type aya::maps::sock::SockMapFd::Error = core::convert::Infallible
  710. pub fn aya::maps::sock::SockMapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  711. impl<T, U> core::convert::TryInto<U> for aya::maps::sock::SockMapFd where U: core::convert::TryFrom<T>
  712. pub type aya::maps::sock::SockMapFd::Error = <U as core::convert::TryFrom<T>>::Error
  713. pub fn aya::maps::sock::SockMapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  714. impl<T> core::any::Any for aya::maps::sock::SockMapFd where T: 'static + ?core::marker::Sized
  715. pub fn aya::maps::sock::SockMapFd::type_id(&self) -> core::any::TypeId
  716. impl<T> core::borrow::Borrow<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  717. pub fn aya::maps::sock::SockMapFd::borrow(&self) -> &T
  718. impl<T> core::borrow::BorrowMut<T> for aya::maps::sock::SockMapFd where T: ?core::marker::Sized
  719. pub fn aya::maps::sock::SockMapFd::borrow_mut(&mut self) -> &mut T
  720. impl<T> core::convert::From<T> for aya::maps::sock::SockMapFd
  721. pub fn aya::maps::sock::SockMapFd::from(t: T) -> T
  722. pub mod aya::maps::stack
  723. pub struct aya::maps::stack::Stack<T, V: aya::Pod>
  724. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  725. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  726. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  727. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  728. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  729. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  730. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  731. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  732. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  733. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  734. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  735. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  736. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  737. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  738. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  739. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  740. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  741. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  742. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  743. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  744. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  745. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  746. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  747. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  748. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  749. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  750. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  751. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  752. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  753. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  754. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  755. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  756. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  757. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  758. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  759. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  760. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  761. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  762. pub mod aya::maps::stack_trace
  763. pub struct aya::maps::stack_trace::StackFrame
  764. pub aya::maps::stack_trace::StackFrame::ip: u64
  765. impl core::marker::Freeze for aya::maps::stack_trace::StackFrame
  766. impl core::marker::Send for aya::maps::stack_trace::StackFrame
  767. impl core::marker::Sync for aya::maps::stack_trace::StackFrame
  768. impl core::marker::Unpin for aya::maps::stack_trace::StackFrame
  769. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackFrame
  770. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackFrame
  771. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackFrame where U: core::convert::From<T>
  772. pub fn aya::maps::stack_trace::StackFrame::into(self) -> U
  773. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackFrame where U: core::convert::Into<T>
  774. pub type aya::maps::stack_trace::StackFrame::Error = core::convert::Infallible
  775. pub fn aya::maps::stack_trace::StackFrame::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  776. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackFrame where U: core::convert::TryFrom<T>
  777. pub type aya::maps::stack_trace::StackFrame::Error = <U as core::convert::TryFrom<T>>::Error
  778. pub fn aya::maps::stack_trace::StackFrame::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  779. impl<T> core::any::Any for aya::maps::stack_trace::StackFrame where T: 'static + ?core::marker::Sized
  780. pub fn aya::maps::stack_trace::StackFrame::type_id(&self) -> core::any::TypeId
  781. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  782. pub fn aya::maps::stack_trace::StackFrame::borrow(&self) -> &T
  783. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackFrame where T: ?core::marker::Sized
  784. pub fn aya::maps::stack_trace::StackFrame::borrow_mut(&mut self) -> &mut T
  785. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackFrame
  786. pub fn aya::maps::stack_trace::StackFrame::from(t: T) -> T
  787. pub struct aya::maps::stack_trace::StackTrace
  788. pub aya::maps::stack_trace::StackTrace::id: u32
  789. impl aya::maps::stack_trace::StackTrace
  790. pub fn aya::maps::stack_trace::StackTrace::frames(&self) -> &[aya::maps::stack_trace::StackFrame]
  791. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  792. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  793. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  794. impl core::marker::Freeze for aya::maps::stack_trace::StackTrace
  795. impl core::marker::Send for aya::maps::stack_trace::StackTrace
  796. impl core::marker::Sync for aya::maps::stack_trace::StackTrace
  797. impl core::marker::Unpin for aya::maps::stack_trace::StackTrace
  798. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTrace
  799. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTrace
  800. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTrace where U: core::convert::From<T>
  801. pub fn aya::maps::stack_trace::StackTrace::into(self) -> U
  802. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  803. pub type aya::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  804. pub fn aya::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  805. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  806. pub type aya::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  807. pub fn aya::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  808. impl<T> core::any::Any for aya::maps::stack_trace::StackTrace where T: 'static + ?core::marker::Sized
  809. pub fn aya::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  810. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  811. pub fn aya::maps::stack_trace::StackTrace::borrow(&self) -> &T
  812. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTrace where T: ?core::marker::Sized
  813. pub fn aya::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  814. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTrace
  815. pub fn aya::maps::stack_trace::StackTrace::from(t: T) -> T
  816. pub struct aya::maps::stack_trace::StackTraceMap<T>
  817. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  818. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  819. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  820. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  821. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  822. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  823. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  824. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  825. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  826. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  827. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  828. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  829. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  830. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  831. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  832. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  833. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  834. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  835. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  836. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  837. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  838. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  839. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  840. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  841. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  842. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  843. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  844. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  845. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  846. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  847. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  848. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  849. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  850. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  851. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  852. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  853. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  854. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  855. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  856. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  857. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  858. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  859. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  860. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  861. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  862. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  863. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  864. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  865. pub mod aya::maps::xdp
  866. pub enum aya::maps::xdp::XdpMapError
  867. pub aya::maps::xdp::XdpMapError::ChainedProgramNotSupported
  868. pub aya::maps::xdp::XdpMapError::MapError(aya::maps::MapError)
  869. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  870. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  871. impl core::error::Error for aya::maps::xdp::XdpMapError
  872. pub fn aya::maps::xdp::XdpMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  873. impl core::fmt::Debug for aya::maps::xdp::XdpMapError
  874. pub fn aya::maps::xdp::XdpMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  875. impl core::fmt::Display for aya::maps::xdp::XdpMapError
  876. pub fn aya::maps::xdp::XdpMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  877. impl core::marker::Freeze for aya::maps::xdp::XdpMapError
  878. impl core::marker::Send for aya::maps::xdp::XdpMapError
  879. impl core::marker::Sync for aya::maps::xdp::XdpMapError
  880. impl core::marker::Unpin for aya::maps::xdp::XdpMapError
  881. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::xdp::XdpMapError
  882. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::xdp::XdpMapError
  883. impl<T, U> core::convert::Into<U> for aya::maps::xdp::XdpMapError where U: core::convert::From<T>
  884. pub fn aya::maps::xdp::XdpMapError::into(self) -> U
  885. impl<T, U> core::convert::TryFrom<U> for aya::maps::xdp::XdpMapError where U: core::convert::Into<T>
  886. pub type aya::maps::xdp::XdpMapError::Error = core::convert::Infallible
  887. pub fn aya::maps::xdp::XdpMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  888. impl<T, U> core::convert::TryInto<U> for aya::maps::xdp::XdpMapError where U: core::convert::TryFrom<T>
  889. pub type aya::maps::xdp::XdpMapError::Error = <U as core::convert::TryFrom<T>>::Error
  890. pub fn aya::maps::xdp::XdpMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  891. impl<T> alloc::string::ToString for aya::maps::xdp::XdpMapError where T: core::fmt::Display + ?core::marker::Sized
  892. pub fn aya::maps::xdp::XdpMapError::to_string(&self) -> alloc::string::String
  893. impl<T> core::any::Any for aya::maps::xdp::XdpMapError where T: 'static + ?core::marker::Sized
  894. pub fn aya::maps::xdp::XdpMapError::type_id(&self) -> core::any::TypeId
  895. impl<T> core::borrow::Borrow<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  896. pub fn aya::maps::xdp::XdpMapError::borrow(&self) -> &T
  897. impl<T> core::borrow::BorrowMut<T> for aya::maps::xdp::XdpMapError where T: ?core::marker::Sized
  898. pub fn aya::maps::xdp::XdpMapError::borrow_mut(&mut self) -> &mut T
  899. impl<T> core::convert::From<T> for aya::maps::xdp::XdpMapError
  900. pub fn aya::maps::xdp::XdpMapError::from(t: T) -> T
  901. pub struct aya::maps::xdp::CpuMap<T>
  902. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  903. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  904. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  905. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  906. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  907. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  908. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  909. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  910. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  911. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  912. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  913. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  914. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  915. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  916. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  917. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  918. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  919. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  920. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  921. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  922. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  923. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  924. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  925. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  926. pub fn aya::maps::CpuMap<T>::into(self) -> U
  927. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  928. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  929. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  930. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  931. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  932. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  933. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  934. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  935. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  936. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  937. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  938. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  939. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  940. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  941. pub struct aya::maps::xdp::DevMap<T>
  942. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  943. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  944. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  945. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  946. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  947. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  948. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  949. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  950. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  951. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  952. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  953. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  954. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  955. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  956. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  957. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  958. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  959. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  960. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  961. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  962. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  963. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  964. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  965. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  966. pub fn aya::maps::DevMap<T>::into(self) -> U
  967. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  968. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  969. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  970. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  971. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  972. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  973. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  974. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  975. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  976. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  977. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  978. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  979. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  980. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  981. pub struct aya::maps::xdp::DevMapHash<T>
  982. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  983. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  984. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  985. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  986. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  987. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  988. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  989. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  990. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  991. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  992. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  993. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  994. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  995. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  996. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  997. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  998. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  999. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1000. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1001. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1002. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1003. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1004. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1005. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1006. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1007. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1008. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1009. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1010. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1011. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1012. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1013. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1014. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1015. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1016. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1017. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1018. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1019. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1020. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1021. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1022. pub struct aya::maps::xdp::XskMap<T>
  1023. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1024. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  1025. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  1026. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1027. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  1028. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1029. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  1030. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1031. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1032. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1033. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1034. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1035. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1036. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1037. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1038. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1039. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  1040. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  1041. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  1042. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  1043. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1044. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1045. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  1046. pub fn aya::maps::XskMap<T>::into(self) -> U
  1047. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  1048. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  1049. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1050. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  1051. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1052. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1053. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  1054. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  1055. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1056. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  1057. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  1058. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  1059. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  1060. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  1061. pub enum aya::maps::Map
  1062. pub aya::maps::Map::Array(aya::maps::MapData)
  1063. pub aya::maps::Map::BloomFilter(aya::maps::MapData)
  1064. pub aya::maps::Map::CpuMap(aya::maps::MapData)
  1065. pub aya::maps::Map::DevMap(aya::maps::MapData)
  1066. pub aya::maps::Map::DevMapHash(aya::maps::MapData)
  1067. pub aya::maps::Map::HashMap(aya::maps::MapData)
  1068. pub aya::maps::Map::LpmTrie(aya::maps::MapData)
  1069. pub aya::maps::Map::LruHashMap(aya::maps::MapData)
  1070. pub aya::maps::Map::PerCpuArray(aya::maps::MapData)
  1071. pub aya::maps::Map::PerCpuHashMap(aya::maps::MapData)
  1072. pub aya::maps::Map::PerCpuLruHashMap(aya::maps::MapData)
  1073. pub aya::maps::Map::PerfEventArray(aya::maps::MapData)
  1074. pub aya::maps::Map::ProgramArray(aya::maps::MapData)
  1075. pub aya::maps::Map::Queue(aya::maps::MapData)
  1076. pub aya::maps::Map::RingBuf(aya::maps::MapData)
  1077. pub aya::maps::Map::SockHash(aya::maps::MapData)
  1078. pub aya::maps::Map::SockMap(aya::maps::MapData)
  1079. pub aya::maps::Map::Stack(aya::maps::MapData)
  1080. pub aya::maps::Map::StackTraceMap(aya::maps::MapData)
  1081. pub aya::maps::Map::Unsupported(aya::maps::MapData)
  1082. pub aya::maps::Map::XskMap(aya::maps::MapData)
  1083. impl aya::maps::Map
  1084. pub fn aya::maps::Map::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1085. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1086. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1087. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1088. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1089. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1090. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1091. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1092. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1093. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1094. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  1095. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  1096. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1097. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  1098. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  1099. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1100. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1101. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1102. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1103. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1104. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1105. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1106. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  1107. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  1108. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1109. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  1110. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  1111. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1112. impl core::fmt::Debug for aya::maps::Map
  1113. pub fn aya::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1114. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1115. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1116. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1117. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1118. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1119. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1120. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1121. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1122. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1123. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1124. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1125. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1126. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1127. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1128. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1129. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1130. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1131. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1132. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1133. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1134. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1135. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  1136. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1137. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1138. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1139. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1140. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1141. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1142. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1143. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1144. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  1145. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1146. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1147. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  1148. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1149. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1150. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1151. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1152. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1153. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  1154. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1155. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1156. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1157. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1158. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1159. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1160. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1161. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1162. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  1163. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1164. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1165. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  1166. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1167. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1168. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1169. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1170. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1171. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1172. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1173. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1174. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1175. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1176. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1177. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  1178. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1179. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1180. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  1181. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1182. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1183. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1184. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1185. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1186. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1187. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1188. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1189. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  1190. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1191. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1192. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  1193. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1194. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1195. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1196. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1197. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1198. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1199. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1200. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1201. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1202. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1203. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1204. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  1205. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1206. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1207. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  1208. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1209. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1210. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1211. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1212. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1213. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1214. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1215. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1216. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  1217. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1218. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1219. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  1220. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1221. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1222. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1223. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1224. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1225. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1226. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1227. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1228. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1229. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1230. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1231. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1232. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1233. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1234. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  1235. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  1236. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1237. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1238. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1239. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1240. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1241. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1242. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1243. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  1244. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  1245. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1246. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  1247. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  1248. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1249. impl core::marker::Freeze for aya::maps::Map
  1250. impl core::marker::Send for aya::maps::Map
  1251. impl core::marker::Sync for aya::maps::Map
  1252. impl core::marker::Unpin for aya::maps::Map
  1253. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::Map
  1254. impl core::panic::unwind_safe::UnwindSafe for aya::maps::Map
  1255. impl<T, U> core::convert::Into<U> for aya::maps::Map where U: core::convert::From<T>
  1256. pub fn aya::maps::Map::into(self) -> U
  1257. impl<T, U> core::convert::TryFrom<U> for aya::maps::Map where U: core::convert::Into<T>
  1258. pub type aya::maps::Map::Error = core::convert::Infallible
  1259. pub fn aya::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1260. impl<T, U> core::convert::TryInto<U> for aya::maps::Map where U: core::convert::TryFrom<T>
  1261. pub type aya::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  1262. pub fn aya::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1263. impl<T> core::any::Any for aya::maps::Map where T: 'static + ?core::marker::Sized
  1264. pub fn aya::maps::Map::type_id(&self) -> core::any::TypeId
  1265. impl<T> core::borrow::Borrow<T> for aya::maps::Map where T: ?core::marker::Sized
  1266. pub fn aya::maps::Map::borrow(&self) -> &T
  1267. impl<T> core::borrow::BorrowMut<T> for aya::maps::Map where T: ?core::marker::Sized
  1268. pub fn aya::maps::Map::borrow_mut(&mut self) -> &mut T
  1269. impl<T> core::convert::From<T> for aya::maps::Map
  1270. pub fn aya::maps::Map::from(t: T) -> T
  1271. pub enum aya::maps::MapError
  1272. pub aya::maps::MapError::CreateError
  1273. pub aya::maps::MapError::CreateError::io_error: std::io::error::Error
  1274. pub aya::maps::MapError::CreateError::name: alloc::string::String
  1275. pub aya::maps::MapError::ElementNotFound
  1276. pub aya::maps::MapError::InvalidKeySize
  1277. pub aya::maps::MapError::InvalidKeySize::expected: usize
  1278. pub aya::maps::MapError::InvalidKeySize::size: usize
  1279. pub aya::maps::MapError::InvalidMapType
  1280. pub aya::maps::MapError::InvalidMapType::map_type: u32
  1281. pub aya::maps::MapError::InvalidName
  1282. pub aya::maps::MapError::InvalidName::name: alloc::string::String
  1283. pub aya::maps::MapError::InvalidValueSize
  1284. pub aya::maps::MapError::InvalidValueSize::expected: usize
  1285. pub aya::maps::MapError::InvalidValueSize::size: usize
  1286. pub aya::maps::MapError::IoError(std::io::error::Error)
  1287. pub aya::maps::MapError::KeyNotFound
  1288. pub aya::maps::MapError::OutOfBounds
  1289. pub aya::maps::MapError::OutOfBounds::index: u32
  1290. pub aya::maps::MapError::OutOfBounds::max_entries: u32
  1291. pub aya::maps::MapError::PinError
  1292. pub aya::maps::MapError::PinError::error: aya::pin::PinError
  1293. pub aya::maps::MapError::PinError::name: core::option::Option<alloc::string::String>
  1294. pub aya::maps::MapError::ProgIdNotSupported
  1295. pub aya::maps::MapError::ProgramNotLoaded
  1296. pub aya::maps::MapError::SyscallError(aya::sys::SyscallError)
  1297. pub aya::maps::MapError::Unsupported
  1298. pub aya::maps::MapError::Unsupported::map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type
  1299. pub aya::maps::MapError::Unsupported::name: alloc::string::String
  1300. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  1301. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  1302. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  1303. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  1304. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  1305. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  1306. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  1307. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  1308. impl core::convert::From<aya_obj::obj::InvalidTypeBinding<u32>> for aya::maps::MapError
  1309. pub fn aya::maps::MapError::from(e: aya_obj::obj::InvalidTypeBinding<u32>) -> Self
  1310. impl core::convert::From<std::io::error::Error> for aya::maps::MapError
  1311. pub fn aya::maps::MapError::from(source: std::io::error::Error) -> Self
  1312. impl core::error::Error for aya::maps::MapError
  1313. pub fn aya::maps::MapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  1314. impl core::fmt::Debug for aya::maps::MapError
  1315. pub fn aya::maps::MapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1316. impl core::fmt::Display for aya::maps::MapError
  1317. pub fn aya::maps::MapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1318. impl core::marker::Freeze for aya::maps::MapError
  1319. impl core::marker::Send for aya::maps::MapError
  1320. impl core::marker::Sync for aya::maps::MapError
  1321. impl core::marker::Unpin for aya::maps::MapError
  1322. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapError
  1323. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::MapError
  1324. impl<T, U> core::convert::Into<U> for aya::maps::MapError where U: core::convert::From<T>
  1325. pub fn aya::maps::MapError::into(self) -> U
  1326. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapError where U: core::convert::Into<T>
  1327. pub type aya::maps::MapError::Error = core::convert::Infallible
  1328. pub fn aya::maps::MapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1329. impl<T, U> core::convert::TryInto<U> for aya::maps::MapError where U: core::convert::TryFrom<T>
  1330. pub type aya::maps::MapError::Error = <U as core::convert::TryFrom<T>>::Error
  1331. pub fn aya::maps::MapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1332. impl<T> alloc::string::ToString for aya::maps::MapError where T: core::fmt::Display + ?core::marker::Sized
  1333. pub fn aya::maps::MapError::to_string(&self) -> alloc::string::String
  1334. impl<T> core::any::Any for aya::maps::MapError where T: 'static + ?core::marker::Sized
  1335. pub fn aya::maps::MapError::type_id(&self) -> core::any::TypeId
  1336. impl<T> core::borrow::Borrow<T> for aya::maps::MapError where T: ?core::marker::Sized
  1337. pub fn aya::maps::MapError::borrow(&self) -> &T
  1338. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapError where T: ?core::marker::Sized
  1339. pub fn aya::maps::MapError::borrow_mut(&mut self) -> &mut T
  1340. impl<T> core::convert::From<T> for aya::maps::MapError
  1341. pub fn aya::maps::MapError::from(t: T) -> T
  1342. #[non_exhaustive] pub enum aya::maps::MapType
  1343. pub aya::maps::MapType::Arena = 33
  1344. pub aya::maps::MapType::Array = 2
  1345. pub aya::maps::MapType::ArrayOfMaps = 12
  1346. pub aya::maps::MapType::BloomFilter = 30
  1347. pub aya::maps::MapType::CgroupArray = 8
  1348. pub aya::maps::MapType::CgroupStorage = 19
  1349. pub aya::maps::MapType::CgrpStorage = 32
  1350. pub aya::maps::MapType::CpuMap = 16
  1351. pub aya::maps::MapType::DevMap = 14
  1352. pub aya::maps::MapType::DevMapHash = 25
  1353. pub aya::maps::MapType::Hash = 1
  1354. pub aya::maps::MapType::HashOfMaps = 13
  1355. pub aya::maps::MapType::InodeStorage = 28
  1356. pub aya::maps::MapType::LpmTrie = 11
  1357. pub aya::maps::MapType::LruHash = 9
  1358. pub aya::maps::MapType::LruPerCpuHash = 10
  1359. pub aya::maps::MapType::PerCpuArray = 6
  1360. pub aya::maps::MapType::PerCpuCgroupStorage = 21
  1361. pub aya::maps::MapType::PerCpuHash = 5
  1362. pub aya::maps::MapType::PerfEventArray = 4
  1363. pub aya::maps::MapType::ProgramArray = 3
  1364. pub aya::maps::MapType::Queue = 22
  1365. pub aya::maps::MapType::ReuseportSockArray = 20
  1366. pub aya::maps::MapType::RingBuf = 27
  1367. pub aya::maps::MapType::SkStorage = 24
  1368. pub aya::maps::MapType::SockHash = 18
  1369. pub aya::maps::MapType::SockMap = 15
  1370. pub aya::maps::MapType::Stack = 23
  1371. pub aya::maps::MapType::StackTrace = 7
  1372. pub aya::maps::MapType::StructOps = 26
  1373. pub aya::maps::MapType::TaskStorage = 29
  1374. pub aya::maps::MapType::Unspecified = 0
  1375. pub aya::maps::MapType::UserRingBuf = 31
  1376. pub aya::maps::MapType::XskMap = 17
  1377. impl core::clone::Clone for aya::maps::MapType
  1378. pub fn aya::maps::MapType::clone(&self) -> aya::maps::MapType
  1379. impl core::cmp::PartialEq for aya::maps::MapType
  1380. pub fn aya::maps::MapType::eq(&self, other: &aya::maps::MapType) -> bool
  1381. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_map_type> for aya::maps::MapType
  1382. pub type aya::maps::MapType::Error = aya::maps::MapError
  1383. pub fn aya::maps::MapType::try_from(map_type: aya_obj::generated::linux_bindings_x86_64::bpf_map_type) -> core::result::Result<Self, Self::Error>
  1384. impl core::fmt::Debug for aya::maps::MapType
  1385. pub fn aya::maps::MapType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1386. impl core::marker::Copy for aya::maps::MapType
  1387. impl core::marker::StructuralPartialEq for aya::maps::MapType
  1388. impl core::marker::Freeze for aya::maps::MapType
  1389. impl core::marker::Send for aya::maps::MapType
  1390. impl core::marker::Sync for aya::maps::MapType
  1391. impl core::marker::Unpin for aya::maps::MapType
  1392. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapType
  1393. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapType
  1394. impl<T, U> core::convert::Into<U> for aya::maps::MapType where U: core::convert::From<T>
  1395. pub fn aya::maps::MapType::into(self) -> U
  1396. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapType where U: core::convert::Into<T>
  1397. pub type aya::maps::MapType::Error = core::convert::Infallible
  1398. pub fn aya::maps::MapType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1399. impl<T, U> core::convert::TryInto<U> for aya::maps::MapType where U: core::convert::TryFrom<T>
  1400. pub type aya::maps::MapType::Error = <U as core::convert::TryFrom<T>>::Error
  1401. pub fn aya::maps::MapType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1402. impl<T> alloc::borrow::ToOwned for aya::maps::MapType where T: core::clone::Clone
  1403. pub type aya::maps::MapType::Owned = T
  1404. pub fn aya::maps::MapType::clone_into(&self, target: &mut T)
  1405. pub fn aya::maps::MapType::to_owned(&self) -> T
  1406. impl<T> core::any::Any for aya::maps::MapType where T: 'static + ?core::marker::Sized
  1407. pub fn aya::maps::MapType::type_id(&self) -> core::any::TypeId
  1408. impl<T> core::borrow::Borrow<T> for aya::maps::MapType where T: ?core::marker::Sized
  1409. pub fn aya::maps::MapType::borrow(&self) -> &T
  1410. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapType where T: ?core::marker::Sized
  1411. pub fn aya::maps::MapType::borrow_mut(&mut self) -> &mut T
  1412. impl<T> core::clone::CloneToUninit for aya::maps::MapType where T: core::clone::Clone
  1413. pub unsafe fn aya::maps::MapType::clone_to_uninit(&self, dest: *mut u8)
  1414. impl<T> core::convert::From<T> for aya::maps::MapType
  1415. pub fn aya::maps::MapType::from(t: T) -> T
  1416. pub struct aya::maps::Array<T, V: aya::Pod>
  1417. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1418. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1419. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  1420. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  1421. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1422. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1423. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1424. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1425. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1426. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1427. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1428. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1429. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1430. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1431. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  1432. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  1433. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  1434. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1435. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1436. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1437. impl<T, V> core::marker::Freeze for aya::maps::array::Array<T, V> where T: core::marker::Freeze
  1438. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  1439. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1440. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1441. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1442. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1443. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  1444. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  1445. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  1446. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  1447. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1448. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  1449. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1450. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1451. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + ?core::marker::Sized
  1452. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  1453. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1454. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  1455. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: ?core::marker::Sized
  1456. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  1457. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  1458. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  1459. pub struct aya::maps::BloomFilter<T, V: aya::Pod>
  1460. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1461. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1462. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1463. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1464. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1465. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1466. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1467. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1468. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1469. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1470. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1471. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1472. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  1473. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1474. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1475. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1476. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1477. impl<T, V> core::marker::Freeze for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Freeze
  1478. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  1479. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1480. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1481. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1482. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1483. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  1484. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  1485. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  1486. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  1487. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1488. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  1489. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1490. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1491. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + ?core::marker::Sized
  1492. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  1493. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1494. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  1495. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: ?core::marker::Sized
  1496. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  1497. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  1498. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  1499. pub struct aya::maps::CpuMap<T>
  1500. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1501. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>
  1502. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::cpu_map::CpuMapValue, aya::maps::MapError>> + '_
  1503. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  1504. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1505. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1506. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  1507. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1508. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1509. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1510. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1511. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1512. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1513. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1514. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1515. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1516. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1517. impl<T> core::marker::Freeze for aya::maps::CpuMap<T> where T: core::marker::Freeze
  1518. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  1519. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  1520. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  1521. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1522. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1523. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  1524. pub fn aya::maps::CpuMap<T>::into(self) -> U
  1525. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  1526. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  1527. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1528. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  1529. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1530. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1531. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + ?core::marker::Sized
  1532. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  1533. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1534. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  1535. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: ?core::marker::Sized
  1536. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  1537. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  1538. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  1539. pub struct aya::maps::DevMap<T>
  1540. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1541. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1542. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>> + '_
  1543. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1544. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1545. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1546. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1547. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1548. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1549. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1550. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1551. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1552. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1553. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1554. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1555. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1556. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1557. impl<T> core::marker::Freeze for aya::maps::DevMap<T> where T: core::marker::Freeze
  1558. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1559. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1560. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1561. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1562. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1563. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1564. pub fn aya::maps::DevMap<T>::into(self) -> U
  1565. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1566. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1567. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1568. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1569. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1570. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1571. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + ?core::marker::Sized
  1572. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1573. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1574. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1575. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: ?core::marker::Sized
  1576. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1577. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1578. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1579. pub struct aya::maps::DevMapHash<T>
  1580. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1581. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<aya::maps::xdp::dev_map::DevMapValue, aya::maps::MapError>
  1582. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::xdp::dev_map::DevMapValue, Self>
  1583. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1584. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1585. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1586. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1587. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1588. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1589. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1590. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1591. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1592. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1593. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1594. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1595. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1596. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1597. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1598. impl<T> core::marker::Freeze for aya::maps::DevMapHash<T> where T: core::marker::Freeze
  1599. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1600. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1601. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1602. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1603. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1604. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1605. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1606. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1607. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1608. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1609. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1610. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1611. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1612. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + ?core::marker::Sized
  1613. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1614. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1615. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1616. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: ?core::marker::Sized
  1617. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1618. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1619. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1620. pub struct aya::maps::HashMap<T, K, V>
  1621. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1622. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1623. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  1624. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1625. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1626. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1627. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1628. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1629. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1630. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1631. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1632. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1633. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1634. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1635. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1636. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1637. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1638. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1639. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  1640. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  1641. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1642. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  1643. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1644. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Freeze
  1645. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1646. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1647. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1648. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1649. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1650. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  1651. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  1652. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  1653. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  1654. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1655. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  1656. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1657. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1658. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + ?core::marker::Sized
  1659. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1660. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1661. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  1662. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: ?core::marker::Sized
  1663. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1664. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  1665. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  1666. pub struct aya::maps::LpmTrie<T, K, V>
  1667. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1668. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1669. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  1670. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  1671. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1672. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1673. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1674. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1675. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  1676. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1677. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1678. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1679. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1680. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1681. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1682. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1683. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1684. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1685. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1686. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  1687. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  1688. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1689. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1690. impl<T, K, V> core::marker::Freeze for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Freeze
  1691. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1692. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1693. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1694. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1695. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1696. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  1697. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  1698. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  1699. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  1700. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1701. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  1702. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1703. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1704. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + ?core::marker::Sized
  1705. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  1706. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1707. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  1708. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: ?core::marker::Sized
  1709. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  1710. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1711. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  1712. pub struct aya::maps::MapData
  1713. impl aya::maps::MapData
  1714. pub fn aya::maps::MapData::create(obj: aya_obj::maps::Map, name: &str, btf_fd: core::option::Option<std::os::fd::owned::BorrowedFd<'_>>) -> core::result::Result<Self, aya::maps::MapError>
  1715. pub fn aya::maps::MapData::fd(&self) -> &aya::maps::MapFd
  1716. pub fn aya::maps::MapData::from_fd(fd: std::os::fd::owned::OwnedFd) -> core::result::Result<Self, aya::maps::MapError>
  1717. pub fn aya::maps::MapData::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1718. pub fn aya::maps::MapData::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1719. pub fn aya::maps::MapData::info(&self) -> core::result::Result<aya::maps::MapInfo, aya::maps::MapError>
  1720. pub fn aya::maps::MapData::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1721. impl core::fmt::Debug for aya::maps::MapData
  1722. pub fn aya::maps::MapData::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1723. impl core::marker::Freeze for aya::maps::MapData
  1724. impl core::marker::Send for aya::maps::MapData
  1725. impl core::marker::Sync for aya::maps::MapData
  1726. impl core::marker::Unpin for aya::maps::MapData
  1727. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapData
  1728. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapData
  1729. impl<T, U> core::convert::Into<U> for aya::maps::MapData where U: core::convert::From<T>
  1730. pub fn aya::maps::MapData::into(self) -> U
  1731. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapData where U: core::convert::Into<T>
  1732. pub type aya::maps::MapData::Error = core::convert::Infallible
  1733. pub fn aya::maps::MapData::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1734. impl<T, U> core::convert::TryInto<U> for aya::maps::MapData where U: core::convert::TryFrom<T>
  1735. pub type aya::maps::MapData::Error = <U as core::convert::TryFrom<T>>::Error
  1736. pub fn aya::maps::MapData::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1737. impl<T> core::any::Any for aya::maps::MapData where T: 'static + ?core::marker::Sized
  1738. pub fn aya::maps::MapData::type_id(&self) -> core::any::TypeId
  1739. impl<T> core::borrow::Borrow<T> for aya::maps::MapData where T: ?core::marker::Sized
  1740. pub fn aya::maps::MapData::borrow(&self) -> &T
  1741. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapData where T: ?core::marker::Sized
  1742. pub fn aya::maps::MapData::borrow_mut(&mut self) -> &mut T
  1743. impl<T> core::convert::From<T> for aya::maps::MapData
  1744. pub fn aya::maps::MapData::from(t: T) -> T
  1745. pub struct aya::maps::MapFd
  1746. impl core::fmt::Debug for aya::maps::MapFd
  1747. pub fn aya::maps::MapFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1748. impl std::os::fd::owned::AsFd for aya::maps::MapFd
  1749. pub fn aya::maps::MapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  1750. impl core::marker::Freeze for aya::maps::MapFd
  1751. impl core::marker::Send for aya::maps::MapFd
  1752. impl core::marker::Sync for aya::maps::MapFd
  1753. impl core::marker::Unpin for aya::maps::MapFd
  1754. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapFd
  1755. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapFd
  1756. impl<T, U> core::convert::Into<U> for aya::maps::MapFd where U: core::convert::From<T>
  1757. pub fn aya::maps::MapFd::into(self) -> U
  1758. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapFd where U: core::convert::Into<T>
  1759. pub type aya::maps::MapFd::Error = core::convert::Infallible
  1760. pub fn aya::maps::MapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1761. impl<T, U> core::convert::TryInto<U> for aya::maps::MapFd where U: core::convert::TryFrom<T>
  1762. pub type aya::maps::MapFd::Error = <U as core::convert::TryFrom<T>>::Error
  1763. pub fn aya::maps::MapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1764. impl<T> core::any::Any for aya::maps::MapFd where T: 'static + ?core::marker::Sized
  1765. pub fn aya::maps::MapFd::type_id(&self) -> core::any::TypeId
  1766. impl<T> core::borrow::Borrow<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1767. pub fn aya::maps::MapFd::borrow(&self) -> &T
  1768. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapFd where T: ?core::marker::Sized
  1769. pub fn aya::maps::MapFd::borrow_mut(&mut self) -> &mut T
  1770. impl<T> core::convert::From<T> for aya::maps::MapFd
  1771. pub fn aya::maps::MapFd::from(t: T) -> T
  1772. pub struct aya::maps::MapInfo(_)
  1773. impl aya::maps::MapInfo
  1774. pub fn aya::maps::MapInfo::fd(&self) -> core::result::Result<aya::maps::MapFd, aya::maps::MapError>
  1775. pub fn aya::maps::MapInfo::from_id(id: u32) -> core::result::Result<Self, aya::maps::MapError>
  1776. pub fn aya::maps::MapInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1777. pub fn aya::maps::MapInfo::id(&self) -> u32
  1778. pub fn aya::maps::MapInfo::key_size(&self) -> u32
  1779. pub fn aya::maps::MapInfo::map_flags(&self) -> u32
  1780. pub fn aya::maps::MapInfo::map_type(&self) -> core::result::Result<aya::maps::MapType, aya::maps::MapError>
  1781. pub fn aya::maps::MapInfo::max_entries(&self) -> u32
  1782. pub fn aya::maps::MapInfo::name(&self) -> &[u8]
  1783. pub fn aya::maps::MapInfo::name_as_str(&self) -> core::option::Option<&str>
  1784. pub fn aya::maps::MapInfo::value_size(&self) -> u32
  1785. impl core::fmt::Debug for aya::maps::MapInfo
  1786. pub fn aya::maps::MapInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1787. impl core::marker::Freeze for aya::maps::MapInfo
  1788. impl core::marker::Send for aya::maps::MapInfo
  1789. impl core::marker::Sync for aya::maps::MapInfo
  1790. impl core::marker::Unpin for aya::maps::MapInfo
  1791. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapInfo
  1792. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapInfo
  1793. impl<T, U> core::convert::Into<U> for aya::maps::MapInfo where U: core::convert::From<T>
  1794. pub fn aya::maps::MapInfo::into(self) -> U
  1795. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapInfo where U: core::convert::Into<T>
  1796. pub type aya::maps::MapInfo::Error = core::convert::Infallible
  1797. pub fn aya::maps::MapInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1798. impl<T, U> core::convert::TryInto<U> for aya::maps::MapInfo where U: core::convert::TryFrom<T>
  1799. pub type aya::maps::MapInfo::Error = <U as core::convert::TryFrom<T>>::Error
  1800. pub fn aya::maps::MapInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1801. impl<T> core::any::Any for aya::maps::MapInfo where T: 'static + ?core::marker::Sized
  1802. pub fn aya::maps::MapInfo::type_id(&self) -> core::any::TypeId
  1803. impl<T> core::borrow::Borrow<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1804. pub fn aya::maps::MapInfo::borrow(&self) -> &T
  1805. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapInfo where T: ?core::marker::Sized
  1806. pub fn aya::maps::MapInfo::borrow_mut(&mut self) -> &mut T
  1807. impl<T> core::convert::From<T> for aya::maps::MapInfo
  1808. pub fn aya::maps::MapInfo::from(t: T) -> T
  1809. pub struct aya::maps::MapIter<'coll, K: aya::Pod, V, I: aya::maps::IterableMap<K, V>>
  1810. impl<K: aya::Pod, V, I: aya::maps::IterableMap<K, V>> core::iter::traits::iterator::Iterator for aya::maps::MapIter<'_, K, V, I>
  1811. pub type aya::maps::MapIter<'_, K, V, I>::Item = core::result::Result<(K, V), aya::maps::MapError>
  1812. pub fn aya::maps::MapIter<'_, K, V, I>::next(&mut self) -> core::option::Option<Self::Item>
  1813. impl<'coll, K, V, I> core::marker::Freeze for aya::maps::MapIter<'coll, K, V, I> where K: core::marker::Freeze
  1814. impl<'coll, K, V, I> core::marker::Send for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Send, K: core::marker::Send
  1815. impl<'coll, K, V, I> core::marker::Sync for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, V: core::marker::Sync, K: core::marker::Sync
  1816. impl<'coll, K, V, I> core::marker::Unpin for aya::maps::MapIter<'coll, K, V, I> where V: core::marker::Unpin, K: core::marker::Unpin
  1817. impl<'coll, K, V, I> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  1818. impl<'coll, K, V, I> core::panic::unwind_safe::UnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  1819. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapIter<'coll, K, V, I> where I: core::iter::traits::iterator::Iterator
  1820. pub type aya::maps::MapIter<'coll, K, V, I>::IntoIter = I
  1821. pub type aya::maps::MapIter<'coll, K, V, I>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1822. pub fn aya::maps::MapIter<'coll, K, V, I>::into_iter(self) -> I
  1823. impl<T, U> core::convert::Into<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::From<T>
  1824. pub fn aya::maps::MapIter<'coll, K, V, I>::into(self) -> U
  1825. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::Into<T>
  1826. pub type aya::maps::MapIter<'coll, K, V, I>::Error = core::convert::Infallible
  1827. pub fn aya::maps::MapIter<'coll, K, V, I>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1828. impl<T, U> core::convert::TryInto<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::TryFrom<T>
  1829. pub type aya::maps::MapIter<'coll, K, V, I>::Error = <U as core::convert::TryFrom<T>>::Error
  1830. pub fn aya::maps::MapIter<'coll, K, V, I>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1831. impl<T> core::any::Any for aya::maps::MapIter<'coll, K, V, I> where T: 'static + ?core::marker::Sized
  1832. pub fn aya::maps::MapIter<'coll, K, V, I>::type_id(&self) -> core::any::TypeId
  1833. impl<T> core::borrow::Borrow<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1834. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow(&self) -> &T
  1835. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapIter<'coll, K, V, I> where T: ?core::marker::Sized
  1836. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow_mut(&mut self) -> &mut T
  1837. impl<T> core::convert::From<T> for aya::maps::MapIter<'coll, K, V, I>
  1838. pub fn aya::maps::MapIter<'coll, K, V, I>::from(t: T) -> T
  1839. pub struct aya::maps::MapKeys<'coll, K: aya::Pod>
  1840. impl<K: aya::Pod> core::iter::traits::iterator::Iterator for aya::maps::MapKeys<'_, K>
  1841. pub type aya::maps::MapKeys<'_, K>::Item = core::result::Result<K, aya::maps::MapError>
  1842. pub fn aya::maps::MapKeys<'_, K>::next(&mut self) -> core::option::Option<core::result::Result<K, aya::maps::MapError>>
  1843. impl<'coll, K> core::marker::Freeze for aya::maps::MapKeys<'coll, K> where K: core::marker::Freeze
  1844. impl<'coll, K> core::marker::Send for aya::maps::MapKeys<'coll, K> where K: core::marker::Send
  1845. impl<'coll, K> core::marker::Sync for aya::maps::MapKeys<'coll, K> where K: core::marker::Sync
  1846. impl<'coll, K> core::marker::Unpin for aya::maps::MapKeys<'coll, K> where K: core::marker::Unpin
  1847. impl<'coll, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::RefUnwindSafe
  1848. impl<'coll, K> core::panic::unwind_safe::UnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::UnwindSafe
  1849. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapKeys<'coll, K> where I: core::iter::traits::iterator::Iterator
  1850. pub type aya::maps::MapKeys<'coll, K>::IntoIter = I
  1851. pub type aya::maps::MapKeys<'coll, K>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1852. pub fn aya::maps::MapKeys<'coll, K>::into_iter(self) -> I
  1853. impl<T, U> core::convert::Into<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::From<T>
  1854. pub fn aya::maps::MapKeys<'coll, K>::into(self) -> U
  1855. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::Into<T>
  1856. pub type aya::maps::MapKeys<'coll, K>::Error = core::convert::Infallible
  1857. pub fn aya::maps::MapKeys<'coll, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1858. impl<T, U> core::convert::TryInto<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::TryFrom<T>
  1859. pub type aya::maps::MapKeys<'coll, K>::Error = <U as core::convert::TryFrom<T>>::Error
  1860. pub fn aya::maps::MapKeys<'coll, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1861. impl<T> core::any::Any for aya::maps::MapKeys<'coll, K> where T: 'static + ?core::marker::Sized
  1862. pub fn aya::maps::MapKeys<'coll, K>::type_id(&self) -> core::any::TypeId
  1863. impl<T> core::borrow::Borrow<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1864. pub fn aya::maps::MapKeys<'coll, K>::borrow(&self) -> &T
  1865. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapKeys<'coll, K> where T: ?core::marker::Sized
  1866. pub fn aya::maps::MapKeys<'coll, K>::borrow_mut(&mut self) -> &mut T
  1867. impl<T> core::convert::From<T> for aya::maps::MapKeys<'coll, K>
  1868. pub fn aya::maps::MapKeys<'coll, K>::from(t: T) -> T
  1869. pub struct aya::maps::PerCpuArray<T, V: aya::Pod>
  1870. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1871. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1872. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  1873. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  1874. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1875. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1876. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1877. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1878. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1879. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1880. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1881. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1882. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1883. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1884. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1885. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1886. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1887. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1888. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1889. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1890. impl<T, V> core::marker::Freeze for aya::maps::PerCpuArray<T, V> where T: core::marker::Freeze
  1891. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  1892. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1893. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1894. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1895. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1896. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  1897. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  1898. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  1899. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  1900. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1901. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  1902. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1903. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1904. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + ?core::marker::Sized
  1905. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  1906. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  1907. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  1908. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: ?core::marker::Sized
  1909. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  1910. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  1911. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  1912. pub struct aya::maps::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  1913. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1914. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1915. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  1916. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1917. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1918. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1919. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1920. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1921. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1922. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1923. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1924. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1925. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1926. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1927. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1928. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1929. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1930. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1931. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1932. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1933. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1934. impl<T, K, V> core::marker::Freeze for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Freeze
  1935. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Send, K: core::marker::Send, V: core::marker::Send
  1936. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1937. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Unpin, K: core::marker::Unpin, V: core::marker::Unpin
  1938. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1939. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1940. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  1941. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  1942. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  1943. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  1944. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1945. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  1946. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1947. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1948. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + ?core::marker::Sized
  1949. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1950. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  1951. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  1952. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: ?core::marker::Sized
  1953. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1954. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1955. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  1956. pub struct aya::maps::PerCpuValues<T: aya::Pod>
  1957. impl<T: aya::Pod> core::convert::TryFrom<alloc::vec::Vec<T>> for aya::maps::PerCpuValues<T>
  1958. pub type aya::maps::PerCpuValues<T>::Error = std::io::error::Error
  1959. pub fn aya::maps::PerCpuValues<T>::try_from(values: alloc::vec::Vec<T>) -> core::result::Result<Self, Self::Error>
  1960. impl<T: aya::Pod> core::ops::deref::Deref for aya::maps::PerCpuValues<T>
  1961. pub type aya::maps::PerCpuValues<T>::Target = alloc::boxed::Box<[T]>
  1962. pub fn aya::maps::PerCpuValues<T>::deref(&self) -> &Self::Target
  1963. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1964. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1965. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1966. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1967. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1968. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1969. impl<T: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::PerCpuValues<T>
  1970. pub fn aya::maps::PerCpuValues<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1971. impl<T> core::marker::Freeze for aya::maps::PerCpuValues<T>
  1972. impl<T> core::marker::Send for aya::maps::PerCpuValues<T> where T: core::marker::Send
  1973. impl<T> core::marker::Sync for aya::maps::PerCpuValues<T> where T: core::marker::Sync
  1974. impl<T> core::marker::Unpin for aya::maps::PerCpuValues<T>
  1975. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1976. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::UnwindSafe
  1977. impl<P, T> core::ops::deref::Receiver for aya::maps::PerCpuValues<T> where P: core::ops::deref::Deref<Target = T> + ?core::marker::Sized, T: ?core::marker::Sized
  1978. pub type aya::maps::PerCpuValues<T>::Target = T
  1979. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuValues<T> where U: core::convert::From<T>
  1980. pub fn aya::maps::PerCpuValues<T>::into(self) -> U
  1981. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuValues<T> where U: core::convert::Into<T>
  1982. pub type aya::maps::PerCpuValues<T>::Error = core::convert::Infallible
  1983. pub fn aya::maps::PerCpuValues<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1984. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuValues<T> where U: core::convert::TryFrom<T>
  1985. pub type aya::maps::PerCpuValues<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1986. pub fn aya::maps::PerCpuValues<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1987. impl<T> core::any::Any for aya::maps::PerCpuValues<T> where T: 'static + ?core::marker::Sized
  1988. pub fn aya::maps::PerCpuValues<T>::type_id(&self) -> core::any::TypeId
  1989. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  1990. pub fn aya::maps::PerCpuValues<T>::borrow(&self) -> &T
  1991. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuValues<T> where T: ?core::marker::Sized
  1992. pub fn aya::maps::PerCpuValues<T>::borrow_mut(&mut self) -> &mut T
  1993. impl<T> core::convert::From<T> for aya::maps::PerCpuValues<T>
  1994. pub fn aya::maps::PerCpuValues<T>::from(t: T) -> T
  1995. pub struct aya::maps::PerfEventArray<T>
  1996. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  1997. pub fn aya::maps::perf::PerfEventArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1998. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  1999. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  2000. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  2001. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  2002. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2003. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  2004. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2005. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2006. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  2007. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2008. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2009. impl<T> core::marker::Freeze for aya::maps::perf::PerfEventArray<T>
  2010. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2011. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sync + core::marker::Send
  2012. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  2013. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2014. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2015. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  2016. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  2017. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  2018. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  2019. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2020. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  2021. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2022. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2023. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + ?core::marker::Sized
  2024. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  2025. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2026. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  2027. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: ?core::marker::Sized
  2028. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  2029. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  2030. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  2031. pub struct aya::maps::ProgramArray<T>
  2032. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2033. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2034. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2035. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2036. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  2037. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2038. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2039. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  2040. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  2041. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2042. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  2043. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2044. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2045. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  2046. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2047. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2048. impl<T> core::marker::Freeze for aya::maps::ProgramArray<T> where T: core::marker::Freeze
  2049. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  2050. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  2051. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  2052. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2053. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  2054. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  2055. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  2056. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  2057. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  2058. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2059. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  2060. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2061. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2062. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + ?core::marker::Sized
  2063. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  2064. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2065. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  2066. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: ?core::marker::Sized
  2067. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  2068. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  2069. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  2070. pub struct aya::maps::Queue<T, V: aya::Pod>
  2071. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2072. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  2073. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2074. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2075. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  2076. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2077. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2078. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  2079. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2080. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2081. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  2082. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2083. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2084. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  2085. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  2086. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2087. impl<T, V> core::marker::Freeze for aya::maps::queue::Queue<T, V> where T: core::marker::Freeze
  2088. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  2089. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2090. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2091. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2092. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2093. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  2094. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  2095. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  2096. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  2097. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2098. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  2099. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2100. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2101. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + ?core::marker::Sized
  2102. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  2103. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2104. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  2105. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: ?core::marker::Sized
  2106. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  2107. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  2108. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  2109. pub struct aya::maps::RingBuf<T>
  2110. impl<T> aya::maps::ring_buf::RingBuf<T>
  2111. pub fn aya::maps::ring_buf::RingBuf<T>::next(&mut self) -> core::option::Option<aya::maps::ring_buf::RingBufItem<'_>>
  2112. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ring_buf::RingBuf<aya::maps::MapData>
  2113. pub type aya::maps::ring_buf::RingBuf<aya::maps::MapData>::Error = aya::maps::MapError
  2114. pub fn aya::maps::ring_buf::RingBuf<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2115. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>
  2116. pub type aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2117. pub fn aya::maps::ring_buf::RingBuf<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2118. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>
  2119. pub type aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2120. pub fn aya::maps::ring_buf::RingBuf<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2121. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::owned::AsFd for aya::maps::ring_buf::RingBuf<T>
  2122. pub fn aya::maps::ring_buf::RingBuf<T>::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  2123. impl<T: core::borrow::Borrow<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::ring_buf::RingBuf<T>
  2124. pub fn aya::maps::ring_buf::RingBuf<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  2125. impl<T> core::marker::Freeze for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Freeze
  2126. impl<T> core::marker::Send for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Send
  2127. impl<T> core::marker::Sync for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Sync
  2128. impl<T> core::marker::Unpin for aya::maps::ring_buf::RingBuf<T> where T: core::marker::Unpin
  2129. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2130. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ring_buf::RingBuf<T> where T: core::panic::unwind_safe::UnwindSafe
  2131. impl<T, U> core::convert::Into<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::From<T>
  2132. pub fn aya::maps::ring_buf::RingBuf<T>::into(self) -> U
  2133. impl<T, U> core::convert::TryFrom<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::Into<T>
  2134. pub type aya::maps::ring_buf::RingBuf<T>::Error = core::convert::Infallible
  2135. pub fn aya::maps::ring_buf::RingBuf<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2136. impl<T, U> core::convert::TryInto<U> for aya::maps::ring_buf::RingBuf<T> where U: core::convert::TryFrom<T>
  2137. pub type aya::maps::ring_buf::RingBuf<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2138. pub fn aya::maps::ring_buf::RingBuf<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2139. impl<T> core::any::Any for aya::maps::ring_buf::RingBuf<T> where T: 'static + ?core::marker::Sized
  2140. pub fn aya::maps::ring_buf::RingBuf<T>::type_id(&self) -> core::any::TypeId
  2141. impl<T> core::borrow::Borrow<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2142. pub fn aya::maps::ring_buf::RingBuf<T>::borrow(&self) -> &T
  2143. impl<T> core::borrow::BorrowMut<T> for aya::maps::ring_buf::RingBuf<T> where T: ?core::marker::Sized
  2144. pub fn aya::maps::ring_buf::RingBuf<T>::borrow_mut(&mut self) -> &mut T
  2145. impl<T> core::convert::From<T> for aya::maps::ring_buf::RingBuf<T>
  2146. pub fn aya::maps::ring_buf::RingBuf<T>::from(t: T) -> T
  2147. pub struct aya::maps::SockHash<T, K>
  2148. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2149. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  2150. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2151. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  2152. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  2153. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  2154. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2155. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  2156. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2157. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  2158. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  2159. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2160. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2161. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  2162. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2163. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2164. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2165. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2166. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2167. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  2168. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  2169. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2170. impl<T, K> core::marker::Freeze for aya::maps::SockHash<T, K> where T: core::marker::Freeze
  2171. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where T: core::marker::Send, K: core::marker::Send
  2172. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where T: core::marker::Sync, K: core::marker::Sync
  2173. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where T: core::marker::Unpin, K: core::marker::Unpin
  2174. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe
  2175. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where T: core::panic::unwind_safe::UnwindSafe, K: core::panic::unwind_safe::UnwindSafe
  2176. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  2177. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  2178. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  2179. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  2180. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2181. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  2182. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  2183. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2184. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + ?core::marker::Sized
  2185. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  2186. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2187. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  2188. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: ?core::marker::Sized
  2189. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  2190. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  2191. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  2192. pub struct aya::maps::SockMap<T>
  2193. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2194. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  2195. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  2196. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  2197. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2198. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  2199. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  2200. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2201. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  2202. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  2203. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2204. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  2205. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2206. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2207. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  2208. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2209. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2210. impl<T> core::marker::Freeze for aya::maps::SockMap<T> where T: core::marker::Freeze
  2211. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  2212. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  2213. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  2214. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2215. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2216. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  2217. pub fn aya::maps::SockMap<T>::into(self) -> U
  2218. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  2219. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  2220. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2221. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  2222. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2223. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2224. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + ?core::marker::Sized
  2225. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  2226. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2227. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  2228. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: ?core::marker::Sized
  2229. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  2230. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  2231. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  2232. pub struct aya::maps::Stack<T, V: aya::Pod>
  2233. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2234. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  2235. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2236. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2237. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2238. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2239. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2240. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  2241. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2242. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2243. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  2244. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2245. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2246. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  2247. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  2248. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2249. impl<T, V> core::marker::Freeze for aya::maps::stack::Stack<T, V> where T: core::marker::Freeze
  2250. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  2251. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2252. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2253. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2254. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2255. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  2256. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  2257. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  2258. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  2259. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2260. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  2261. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2262. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2263. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + ?core::marker::Sized
  2264. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  2265. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2266. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  2267. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: ?core::marker::Sized
  2268. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  2269. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  2270. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  2271. pub struct aya::maps::StackTraceMap<T>
  2272. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2273. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2274. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  2275. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  2276. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2277. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2278. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2279. pub fn aya::maps::stack_trace::StackTraceMap<T>::remove(&mut self, stack_id: &u32) -> core::result::Result<(), aya::maps::MapError>
  2280. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  2281. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  2282. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2283. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  2284. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  2285. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  2286. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  2287. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  2288. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2289. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2290. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  2291. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2292. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2293. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2294. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2295. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2296. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  2297. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2298. impl<T> core::marker::Freeze for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Freeze
  2299. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  2300. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  2301. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  2302. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2303. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2304. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  2305. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  2306. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  2307. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  2308. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2309. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  2310. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2311. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2312. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + ?core::marker::Sized
  2313. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  2314. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2315. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  2316. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: ?core::marker::Sized
  2317. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  2318. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  2319. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  2320. pub struct aya::maps::XskMap<T>
  2321. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2322. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  2323. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2324. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2325. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  2326. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2327. pub fn aya::maps::XskMap<T>::unset(&mut self, index: u32) -> core::result::Result<(), aya::maps::MapError>
  2328. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  2329. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  2330. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2331. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  2332. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2333. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2334. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  2335. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2336. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2337. impl<T> core::marker::Freeze for aya::maps::XskMap<T> where T: core::marker::Freeze
  2338. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  2339. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  2340. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  2341. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2342. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2343. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  2344. pub fn aya::maps::XskMap<T>::into(self) -> U
  2345. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  2346. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  2347. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2348. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  2349. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2350. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2351. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + ?core::marker::Sized
  2352. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  2353. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2354. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  2355. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: ?core::marker::Sized
  2356. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  2357. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  2358. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  2359. pub trait aya::maps::IterableMap<K: aya::Pod, V>
  2360. pub fn aya::maps::IterableMap::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2361. pub fn aya::maps::IterableMap::map(&self) -> &aya::maps::MapData
  2362. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  2363. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2364. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2365. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2366. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2367. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2368. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  2369. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  2370. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  2371. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2372. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2373. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2374. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  2375. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  2376. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  2377. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  2378. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2379. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2380. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2381. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2382. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2383. pub fn aya::maps::loaded_maps() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::MapInfo, aya::maps::MapError>>
  2384. pub mod aya::pin
  2385. pub enum aya::pin::PinError
  2386. pub aya::pin::PinError::InvalidPinPath
  2387. pub aya::pin::PinError::InvalidPinPath::error: alloc::ffi::c_str::NulError
  2388. pub aya::pin::PinError::InvalidPinPath::path: std::path::PathBuf
  2389. pub aya::pin::PinError::NoFd
  2390. pub aya::pin::PinError::NoFd::name: alloc::string::String
  2391. pub aya::pin::PinError::SyscallError(aya::sys::SyscallError)
  2392. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  2393. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  2394. impl core::error::Error for aya::pin::PinError
  2395. pub fn aya::pin::PinError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  2396. impl core::fmt::Debug for aya::pin::PinError
  2397. pub fn aya::pin::PinError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2398. impl core::fmt::Display for aya::pin::PinError
  2399. pub fn aya::pin::PinError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2400. impl core::marker::Freeze for aya::pin::PinError
  2401. impl core::marker::Send for aya::pin::PinError
  2402. impl core::marker::Sync for aya::pin::PinError
  2403. impl core::marker::Unpin for aya::pin::PinError
  2404. impl !core::panic::unwind_safe::RefUnwindSafe for aya::pin::PinError
  2405. impl !core::panic::unwind_safe::UnwindSafe for aya::pin::PinError
  2406. impl<T, U> core::convert::Into<U> for aya::pin::PinError where U: core::convert::From<T>
  2407. pub fn aya::pin::PinError::into(self) -> U
  2408. impl<T, U> core::convert::TryFrom<U> for aya::pin::PinError where U: core::convert::Into<T>
  2409. pub type aya::pin::PinError::Error = core::convert::Infallible
  2410. pub fn aya::pin::PinError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2411. impl<T, U> core::convert::TryInto<U> for aya::pin::PinError where U: core::convert::TryFrom<T>
  2412. pub type aya::pin::PinError::Error = <U as core::convert::TryFrom<T>>::Error
  2413. pub fn aya::pin::PinError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2414. impl<T> alloc::string::ToString for aya::pin::PinError where T: core::fmt::Display + ?core::marker::Sized
  2415. pub fn aya::pin::PinError::to_string(&self) -> alloc::string::String
  2416. impl<T> core::any::Any for aya::pin::PinError where T: 'static + ?core::marker::Sized
  2417. pub fn aya::pin::PinError::type_id(&self) -> core::any::TypeId
  2418. impl<T> core::borrow::Borrow<T> for aya::pin::PinError where T: ?core::marker::Sized
  2419. pub fn aya::pin::PinError::borrow(&self) -> &T
  2420. impl<T> core::borrow::BorrowMut<T> for aya::pin::PinError where T: ?core::marker::Sized
  2421. pub fn aya::pin::PinError::borrow_mut(&mut self) -> &mut T
  2422. impl<T> core::convert::From<T> for aya::pin::PinError
  2423. pub fn aya::pin::PinError::from(t: T) -> T
  2424. pub mod aya::programs
  2425. pub use aya::programs::CgroupSockAddrAttachType
  2426. pub use aya::programs::CgroupSockAttachType
  2427. pub use aya::programs::CgroupSockoptAttachType
  2428. pub mod aya::programs::cgroup_device
  2429. pub struct aya::programs::cgroup_device::CgroupDevice
  2430. impl aya::programs::cgroup_device::CgroupDevice
  2431. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  2432. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  2433. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2434. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  2435. impl aya::programs::cgroup_device::CgroupDevice
  2436. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2437. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  2438. impl aya::programs::cgroup_device::CgroupDevice
  2439. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2440. impl aya::programs::cgroup_device::CgroupDevice
  2441. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2442. impl aya::programs::cgroup_device::CgroupDevice
  2443. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  2444. impl aya::programs::cgroup_device::CgroupDevice
  2445. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2446. impl aya::programs::cgroup_device::CgroupDevice
  2447. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2448. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2449. impl aya::programs::cgroup_device::CgroupDevice
  2450. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2451. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  2452. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2453. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  2454. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  2455. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  2456. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2457. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2458. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  2459. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2460. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2461. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  2462. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  2463. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  2464. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  2465. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2466. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2467. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  2468. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  2469. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  2470. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  2471. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2472. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  2473. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  2474. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2475. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  2476. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  2477. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2478. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  2479. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  2480. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  2481. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  2482. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  2483. pub struct aya::programs::cgroup_device::CgroupDeviceLink(_)
  2484. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  2485. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  2486. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2487. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  2488. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLink
  2489. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLink
  2490. pub fn aya::programs::cgroup_device::CgroupDeviceLink::eq(&self, other: &Self) -> bool
  2491. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLink
  2492. pub fn aya::programs::cgroup_device::CgroupDeviceLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2493. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLink
  2494. pub fn aya::programs::cgroup_device::CgroupDeviceLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2495. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDeviceLink
  2496. pub fn aya::programs::cgroup_device::CgroupDeviceLink::drop(&mut self)
  2497. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2498. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2499. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLink
  2500. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLink
  2501. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLink
  2502. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLink
  2503. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2504. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2505. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2506. pub fn aya::programs::cgroup_device::CgroupDeviceLink::equivalent(&self, key: &K) -> bool
  2507. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::From<T>
  2508. pub fn aya::programs::cgroup_device::CgroupDeviceLink::into(self) -> U
  2509. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::Into<T>
  2510. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = core::convert::Infallible
  2511. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2512. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::TryFrom<T>
  2513. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = <U as core::convert::TryFrom<T>>::Error
  2514. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2515. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLink where T: 'static + ?core::marker::Sized
  2516. pub fn aya::programs::cgroup_device::CgroupDeviceLink::type_id(&self) -> core::any::TypeId
  2517. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2518. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow(&self) -> &T
  2519. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: ?core::marker::Sized
  2520. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow_mut(&mut self) -> &mut T
  2521. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLink
  2522. pub fn aya::programs::cgroup_device::CgroupDeviceLink::from(t: T) -> T
  2523. pub struct aya::programs::cgroup_device::CgroupDeviceLinkId(_)
  2524. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2525. impl core::cmp::PartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2526. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::eq(&self, other: &aya::programs::cgroup_device::CgroupDeviceLinkId) -> bool
  2527. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLinkId
  2528. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2529. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLinkId
  2530. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2531. impl core::marker::StructuralPartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2532. impl equivalent::Equivalent<aya::programs::cgroup_device::CgroupDeviceLink> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2533. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &aya::programs::cgroup_device::CgroupDeviceLink) -> bool
  2534. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDeviceLinkId
  2535. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLinkId
  2536. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLinkId
  2537. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLinkId
  2538. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2539. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2540. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_device::CgroupDeviceLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2541. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::equivalent(&self, key: &K) -> bool
  2542. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::From<T>
  2543. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::into(self) -> U
  2544. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::Into<T>
  2545. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = core::convert::Infallible
  2546. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2547. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::TryFrom<T>
  2548. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2549. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2550. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLinkId where T: 'static + ?core::marker::Sized
  2551. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::type_id(&self) -> core::any::TypeId
  2552. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2553. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow(&self) -> &T
  2554. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: ?core::marker::Sized
  2555. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow_mut(&mut self) -> &mut T
  2556. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2557. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::from(t: T) -> T
  2558. pub mod aya::programs::cgroup_skb
  2559. pub enum aya::programs::cgroup_skb::CgroupSkbAttachType
  2560. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Egress
  2561. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Ingress
  2562. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  2563. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  2564. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  2565. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2566. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  2567. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  2568. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  2569. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  2570. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  2571. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2572. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2573. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  2574. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  2575. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  2576. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  2577. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2578. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  2579. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  2580. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2581. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2582. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  2583. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  2584. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  2585. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  2586. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  2587. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2588. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  2589. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  2590. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  2591. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2592. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  2593. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  2594. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  2595. pub struct aya::programs::cgroup_skb::CgroupSkb
  2596. impl aya::programs::cgroup_skb::CgroupSkb
  2597. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  2598. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  2599. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  2600. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2601. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2602. impl aya::programs::cgroup_skb::CgroupSkb
  2603. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2604. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  2605. impl aya::programs::cgroup_skb::CgroupSkb
  2606. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2607. impl aya::programs::cgroup_skb::CgroupSkb
  2608. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  2609. impl aya::programs::cgroup_skb::CgroupSkb
  2610. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2611. impl aya::programs::cgroup_skb::CgroupSkb
  2612. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2613. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2614. impl aya::programs::cgroup_skb::CgroupSkb
  2615. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2616. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  2617. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2618. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  2619. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  2620. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  2621. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2622. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2623. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  2624. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2625. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2626. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  2627. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  2628. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  2629. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  2630. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2631. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2632. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  2633. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  2634. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  2635. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  2636. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2637. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  2638. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  2639. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2640. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  2641. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  2642. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2643. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  2644. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  2645. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  2646. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  2647. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  2648. pub struct aya::programs::cgroup_skb::CgroupSkbLink(_)
  2649. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  2650. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  2651. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2652. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  2653. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLink
  2654. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLink
  2655. pub fn aya::programs::cgroup_skb::CgroupSkbLink::eq(&self, other: &Self) -> bool
  2656. impl core::convert::TryFrom<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::links::FdLink
  2657. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  2658. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_skb::CgroupSkbLink) -> core::result::Result<Self, Self::Error>
  2659. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLink
  2660. pub fn aya::programs::cgroup_skb::CgroupSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2661. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLink
  2662. pub fn aya::programs::cgroup_skb::CgroupSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2663. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkbLink
  2664. pub fn aya::programs::cgroup_skb::CgroupSkbLink::drop(&mut self)
  2665. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2666. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2667. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLink
  2668. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLink
  2669. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLink
  2670. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLink
  2671. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2672. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2673. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2674. pub fn aya::programs::cgroup_skb::CgroupSkbLink::equivalent(&self, key: &K) -> bool
  2675. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::From<T>
  2676. pub fn aya::programs::cgroup_skb::CgroupSkbLink::into(self) -> U
  2677. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::Into<T>
  2678. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = core::convert::Infallible
  2679. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2680. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::TryFrom<T>
  2681. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  2682. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2683. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLink where T: 'static + ?core::marker::Sized
  2684. pub fn aya::programs::cgroup_skb::CgroupSkbLink::type_id(&self) -> core::any::TypeId
  2685. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2686. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow(&self) -> &T
  2687. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: ?core::marker::Sized
  2688. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow_mut(&mut self) -> &mut T
  2689. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLink
  2690. pub fn aya::programs::cgroup_skb::CgroupSkbLink::from(t: T) -> T
  2691. pub struct aya::programs::cgroup_skb::CgroupSkbLinkId(_)
  2692. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2693. impl core::cmp::PartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2694. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::eq(&self, other: &aya::programs::cgroup_skb::CgroupSkbLinkId) -> bool
  2695. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLinkId
  2696. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2697. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLinkId
  2698. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2699. impl core::marker::StructuralPartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2700. impl equivalent::Equivalent<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2701. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &aya::programs::cgroup_skb::CgroupSkbLink) -> bool
  2702. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbLinkId
  2703. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLinkId
  2704. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLinkId
  2705. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLinkId
  2706. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2707. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2708. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_skb::CgroupSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2709. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::equivalent(&self, key: &K) -> bool
  2710. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::From<T>
  2711. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::into(self) -> U
  2712. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::Into<T>
  2713. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = core::convert::Infallible
  2714. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2715. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::TryFrom<T>
  2716. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2717. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2718. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLinkId where T: 'static + ?core::marker::Sized
  2719. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::type_id(&self) -> core::any::TypeId
  2720. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2721. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow(&self) -> &T
  2722. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: ?core::marker::Sized
  2723. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow_mut(&mut self) -> &mut T
  2724. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2725. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::from(t: T) -> T
  2726. pub mod aya::programs::cgroup_sock
  2727. pub use aya::programs::cgroup_sock::CgroupSockAttachType
  2728. pub struct aya::programs::cgroup_sock::CgroupSock
  2729. impl aya::programs::cgroup_sock::CgroupSock
  2730. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  2731. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  2732. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2733. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2734. impl aya::programs::cgroup_sock::CgroupSock
  2735. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2736. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  2737. impl aya::programs::cgroup_sock::CgroupSock
  2738. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2739. impl aya::programs::cgroup_sock::CgroupSock
  2740. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2741. impl aya::programs::cgroup_sock::CgroupSock
  2742. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2743. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2744. impl aya::programs::cgroup_sock::CgroupSock
  2745. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2746. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  2747. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2748. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  2749. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  2750. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  2751. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2752. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2753. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  2754. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2755. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2756. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  2757. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  2758. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  2759. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  2760. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2761. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2762. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  2763. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  2764. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  2765. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  2766. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2767. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  2768. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  2769. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2770. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  2771. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  2772. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2773. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  2774. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  2775. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  2776. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  2777. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  2778. pub struct aya::programs::cgroup_sock::CgroupSockLink(_)
  2779. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  2780. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  2781. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2782. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  2783. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLink
  2784. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLink
  2785. pub fn aya::programs::cgroup_sock::CgroupSockLink::eq(&self, other: &Self) -> bool
  2786. impl core::convert::TryFrom<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::links::FdLink
  2787. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  2788. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock::CgroupSockLink) -> core::result::Result<Self, Self::Error>
  2789. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLink
  2790. pub fn aya::programs::cgroup_sock::CgroupSockLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2791. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLink
  2792. pub fn aya::programs::cgroup_sock::CgroupSockLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2793. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSockLink
  2794. pub fn aya::programs::cgroup_sock::CgroupSockLink::drop(&mut self)
  2795. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2796. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2797. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLink
  2798. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLink
  2799. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLink
  2800. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLink
  2801. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2802. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2803. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2804. pub fn aya::programs::cgroup_sock::CgroupSockLink::equivalent(&self, key: &K) -> bool
  2805. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::From<T>
  2806. pub fn aya::programs::cgroup_sock::CgroupSockLink::into(self) -> U
  2807. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::Into<T>
  2808. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = core::convert::Infallible
  2809. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2810. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::TryFrom<T>
  2811. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = <U as core::convert::TryFrom<T>>::Error
  2812. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2813. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLink where T: 'static + ?core::marker::Sized
  2814. pub fn aya::programs::cgroup_sock::CgroupSockLink::type_id(&self) -> core::any::TypeId
  2815. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2816. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow(&self) -> &T
  2817. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLink where T: ?core::marker::Sized
  2818. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow_mut(&mut self) -> &mut T
  2819. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLink
  2820. pub fn aya::programs::cgroup_sock::CgroupSockLink::from(t: T) -> T
  2821. pub struct aya::programs::cgroup_sock::CgroupSockLinkId(_)
  2822. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLinkId
  2823. impl core::cmp::PartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2824. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::eq(&self, other: &aya::programs::cgroup_sock::CgroupSockLinkId) -> bool
  2825. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLinkId
  2826. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2827. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLinkId
  2828. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2829. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2830. impl equivalent::Equivalent<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::cgroup_sock::CgroupSockLinkId
  2831. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &aya::programs::cgroup_sock::CgroupSockLink) -> bool
  2832. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSockLinkId
  2833. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLinkId
  2834. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLinkId
  2835. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLinkId
  2836. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2837. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2838. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock::CgroupSockLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2839. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::equivalent(&self, key: &K) -> bool
  2840. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::From<T>
  2841. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::into(self) -> U
  2842. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::Into<T>
  2843. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = core::convert::Infallible
  2844. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2845. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::TryFrom<T>
  2846. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2847. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2848. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLinkId where T: 'static + ?core::marker::Sized
  2849. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::type_id(&self) -> core::any::TypeId
  2850. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2851. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow(&self) -> &T
  2852. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: ?core::marker::Sized
  2853. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow_mut(&mut self) -> &mut T
  2854. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLinkId
  2855. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::from(t: T) -> T
  2856. pub mod aya::programs::cgroup_sock_addr
  2857. pub use aya::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  2858. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddr
  2859. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2860. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  2861. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  2862. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2863. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2864. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2865. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2866. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  2867. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2868. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2869. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2870. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2871. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2872. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2873. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2874. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2875. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2876. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2877. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2878. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2879. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  2880. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  2881. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2882. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2883. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  2884. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2885. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2886. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2887. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2888. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2889. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2890. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2891. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2892. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  2893. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  2894. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  2895. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  2896. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2897. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  2898. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  2899. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2900. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  2901. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  2902. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  2903. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  2904. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  2905. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  2906. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2907. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  2908. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLink(_)
  2909. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2910. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2911. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2912. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  2913. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2914. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2915. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::eq(&self, other: &Self) -> bool
  2916. impl core::convert::TryFrom<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::links::FdLink
  2917. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  2918. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> core::result::Result<Self, Self::Error>
  2919. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2920. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2921. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2922. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  2923. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2924. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::drop(&mut self)
  2925. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2926. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  2927. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2928. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2929. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2930. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2931. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2932. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2933. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2934. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::equivalent(&self, key: &K) -> bool
  2935. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::From<T>
  2936. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::into(self) -> U
  2937. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::Into<T>
  2938. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = core::convert::Infallible
  2939. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2940. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::TryFrom<T>
  2941. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = <U as core::convert::TryFrom<T>>::Error
  2942. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2943. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: 'static + ?core::marker::Sized
  2944. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::type_id(&self) -> core::any::TypeId
  2945. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  2946. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow(&self) -> &T
  2947. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: ?core::marker::Sized
  2948. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow_mut(&mut self) -> &mut T
  2949. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2950. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::from(t: T) -> T
  2951. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId(_)
  2952. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2953. impl core::cmp::PartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2954. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::eq(&self, other: &aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> bool
  2955. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2956. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2957. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2958. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2959. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2960. impl equivalent::Equivalent<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2961. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> bool
  2962. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2963. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2964. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2965. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2966. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2967. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2968. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  2969. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::equivalent(&self, key: &K) -> bool
  2970. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::From<T>
  2971. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::into(self) -> U
  2972. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::Into<T>
  2973. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = core::convert::Infallible
  2974. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2975. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::TryFrom<T>
  2976. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2977. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2978. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: 'static + ?core::marker::Sized
  2979. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::type_id(&self) -> core::any::TypeId
  2980. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  2981. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow(&self) -> &T
  2982. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: ?core::marker::Sized
  2983. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow_mut(&mut self) -> &mut T
  2984. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2985. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::from(t: T) -> T
  2986. pub mod aya::programs::cgroup_sockopt
  2987. pub use aya::programs::cgroup_sockopt::CgroupSockoptAttachType
  2988. pub struct aya::programs::cgroup_sockopt::CgroupSockopt
  2989. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2990. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  2991. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  2992. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2993. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2994. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2995. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2996. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  2997. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2998. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2999. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3000. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  3001. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3002. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3003. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3004. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3005. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3006. impl aya::programs::cgroup_sockopt::CgroupSockopt
  3007. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3008. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  3009. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3010. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  3011. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  3012. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  3013. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3014. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  3015. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  3016. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  3017. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  3018. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  3019. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  3020. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  3021. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  3022. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3023. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  3024. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  3025. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  3026. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  3027. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  3028. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3029. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  3030. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  3031. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3032. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  3033. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  3034. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3035. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  3036. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  3037. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  3038. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  3039. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  3040. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLink(_)
  3041. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3042. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3043. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3044. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  3045. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3046. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3047. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::eq(&self, other: &Self) -> bool
  3048. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3049. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3050. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3051. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3052. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3053. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::drop(&mut self)
  3054. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3055. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3056. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3057. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3058. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3059. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3060. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3061. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3062. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3063. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::equivalent(&self, key: &K) -> bool
  3064. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::From<T>
  3065. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::into(self) -> U
  3066. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::Into<T>
  3067. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = core::convert::Infallible
  3068. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3069. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::TryFrom<T>
  3070. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = <U as core::convert::TryFrom<T>>::Error
  3071. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3072. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: 'static + ?core::marker::Sized
  3073. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::type_id(&self) -> core::any::TypeId
  3074. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3075. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow(&self) -> &T
  3076. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: ?core::marker::Sized
  3077. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow_mut(&mut self) -> &mut T
  3078. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3079. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::from(t: T) -> T
  3080. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLinkId(_)
  3081. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3082. impl core::cmp::PartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3083. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::eq(&self, other: &aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> bool
  3084. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3085. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3086. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3087. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3088. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3089. impl equivalent::Equivalent<aya::programs::cgroup_sockopt::CgroupSockoptLink> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3090. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &aya::programs::cgroup_sockopt::CgroupSockoptLink) -> bool
  3091. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3092. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3093. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3094. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3095. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3096. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3097. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3098. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::equivalent(&self, key: &K) -> bool
  3099. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::From<T>
  3100. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::into(self) -> U
  3101. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::Into<T>
  3102. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = core::convert::Infallible
  3103. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3104. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::TryFrom<T>
  3105. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3106. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3107. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: 'static + ?core::marker::Sized
  3108. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::type_id(&self) -> core::any::TypeId
  3109. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3110. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow(&self) -> &T
  3111. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: ?core::marker::Sized
  3112. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow_mut(&mut self) -> &mut T
  3113. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3114. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::from(t: T) -> T
  3115. pub mod aya::programs::cgroup_sysctl
  3116. pub struct aya::programs::cgroup_sysctl::CgroupSysctl
  3117. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3118. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  3119. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  3120. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3121. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3122. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3123. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  3124. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3125. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3126. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3127. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3128. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3129. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3130. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3131. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3132. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3133. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3134. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3135. impl aya::programs::cgroup_sysctl::CgroupSysctl
  3136. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3137. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  3138. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3139. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  3140. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  3141. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  3142. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3143. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  3144. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  3145. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  3146. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  3147. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  3148. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  3149. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  3150. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  3151. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3152. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  3153. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  3154. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  3155. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  3156. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  3157. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3158. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  3159. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  3160. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3161. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  3162. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  3163. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3164. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  3165. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  3166. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  3167. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  3168. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  3169. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLink(_)
  3170. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3171. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3172. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3173. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  3174. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3175. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3176. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::eq(&self, other: &Self) -> bool
  3177. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3178. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3179. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3180. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3181. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3182. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::drop(&mut self)
  3183. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3184. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3185. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3186. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3187. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3188. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3189. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3190. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3191. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3192. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::equivalent(&self, key: &K) -> bool
  3193. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::From<T>
  3194. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::into(self) -> U
  3195. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::Into<T>
  3196. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = core::convert::Infallible
  3197. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3198. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::TryFrom<T>
  3199. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = <U as core::convert::TryFrom<T>>::Error
  3200. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3201. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: 'static + ?core::marker::Sized
  3202. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::type_id(&self) -> core::any::TypeId
  3203. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3204. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow(&self) -> &T
  3205. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: ?core::marker::Sized
  3206. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow_mut(&mut self) -> &mut T
  3207. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3208. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::from(t: T) -> T
  3209. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLinkId(_)
  3210. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3211. impl core::cmp::PartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3212. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::eq(&self, other: &aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> bool
  3213. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3214. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3215. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3216. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3217. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3218. impl equivalent::Equivalent<aya::programs::cgroup_sysctl::CgroupSysctlLink> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3219. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &aya::programs::cgroup_sysctl::CgroupSysctlLink) -> bool
  3220. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3221. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3222. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3223. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3224. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3225. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3226. impl<Q, K> equivalent::Equivalent<K> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3227. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::equivalent(&self, key: &K) -> bool
  3228. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::From<T>
  3229. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::into(self) -> U
  3230. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::Into<T>
  3231. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = core::convert::Infallible
  3232. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3233. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::TryFrom<T>
  3234. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3235. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3236. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: 'static + ?core::marker::Sized
  3237. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::type_id(&self) -> core::any::TypeId
  3238. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3239. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow(&self) -> &T
  3240. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: ?core::marker::Sized
  3241. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow_mut(&mut self) -> &mut T
  3242. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3243. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::from(t: T) -> T
  3244. pub mod aya::programs::extension
  3245. pub enum aya::programs::extension::ExtensionError
  3246. pub aya::programs::extension::ExtensionError::NoBTF
  3247. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  3248. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  3249. impl core::error::Error for aya::programs::extension::ExtensionError
  3250. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  3251. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3252. impl core::fmt::Display for aya::programs::extension::ExtensionError
  3253. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3254. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  3255. impl core::marker::Send for aya::programs::extension::ExtensionError
  3256. impl core::marker::Sync for aya::programs::extension::ExtensionError
  3257. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  3258. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  3259. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  3260. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  3261. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  3262. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  3263. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  3264. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3265. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  3266. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  3267. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3268. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  3269. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  3270. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  3271. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  3272. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3273. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  3274. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  3275. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  3276. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  3277. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  3278. pub struct aya::programs::extension::Extension
  3279. impl aya::programs::extension::Extension
  3280. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  3281. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3282. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  3283. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  3284. impl aya::programs::extension::Extension
  3285. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3286. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  3287. impl aya::programs::extension::Extension
  3288. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3289. impl aya::programs::extension::Extension
  3290. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3291. impl aya::programs::extension::Extension
  3292. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3293. impl aya::programs::extension::Extension
  3294. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3295. impl aya::programs::extension::Extension
  3296. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3297. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3298. impl aya::programs::extension::Extension
  3299. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3300. impl core::fmt::Debug for aya::programs::extension::Extension
  3301. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3302. impl core::ops::drop::Drop for aya::programs::extension::Extension
  3303. pub fn aya::programs::extension::Extension::drop(&mut self)
  3304. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  3305. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3306. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  3307. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  3308. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  3309. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  3310. impl core::marker::Freeze for aya::programs::extension::Extension
  3311. impl core::marker::Send for aya::programs::extension::Extension
  3312. impl core::marker::Sync for aya::programs::extension::Extension
  3313. impl core::marker::Unpin for aya::programs::extension::Extension
  3314. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  3315. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  3316. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  3317. pub fn aya::programs::extension::Extension::into(self) -> U
  3318. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  3319. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  3320. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3321. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  3322. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  3323. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3324. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  3325. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  3326. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3327. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  3328. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  3329. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  3330. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  3331. pub fn aya::programs::extension::Extension::from(t: T) -> T
  3332. pub struct aya::programs::extension::ExtensionLink(_)
  3333. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  3334. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  3335. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3336. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  3337. impl core::cmp::Eq for aya::programs::extension::ExtensionLink
  3338. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLink
  3339. pub fn aya::programs::extension::ExtensionLink::eq(&self, other: &Self) -> bool
  3340. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  3341. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3342. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3343. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3344. impl core::fmt::Debug for aya::programs::extension::ExtensionLink
  3345. pub fn aya::programs::extension::ExtensionLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3346. impl core::hash::Hash for aya::programs::extension::ExtensionLink
  3347. pub fn aya::programs::extension::ExtensionLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3348. impl core::ops::drop::Drop for aya::programs::extension::ExtensionLink
  3349. pub fn aya::programs::extension::ExtensionLink::drop(&mut self)
  3350. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3351. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3352. impl core::marker::Freeze for aya::programs::extension::ExtensionLink
  3353. impl core::marker::Send for aya::programs::extension::ExtensionLink
  3354. impl core::marker::Sync for aya::programs::extension::ExtensionLink
  3355. impl core::marker::Unpin for aya::programs::extension::ExtensionLink
  3356. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLink
  3357. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLink
  3358. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3359. pub fn aya::programs::extension::ExtensionLink::equivalent(&self, key: &K) -> bool
  3360. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLink where U: core::convert::From<T>
  3361. pub fn aya::programs::extension::ExtensionLink::into(self) -> U
  3362. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLink where U: core::convert::Into<T>
  3363. pub type aya::programs::extension::ExtensionLink::Error = core::convert::Infallible
  3364. pub fn aya::programs::extension::ExtensionLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3365. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLink where U: core::convert::TryFrom<T>
  3366. pub type aya::programs::extension::ExtensionLink::Error = <U as core::convert::TryFrom<T>>::Error
  3367. pub fn aya::programs::extension::ExtensionLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3368. impl<T> core::any::Any for aya::programs::extension::ExtensionLink where T: 'static + ?core::marker::Sized
  3369. pub fn aya::programs::extension::ExtensionLink::type_id(&self) -> core::any::TypeId
  3370. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3371. pub fn aya::programs::extension::ExtensionLink::borrow(&self) -> &T
  3372. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLink where T: ?core::marker::Sized
  3373. pub fn aya::programs::extension::ExtensionLink::borrow_mut(&mut self) -> &mut T
  3374. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLink
  3375. pub fn aya::programs::extension::ExtensionLink::from(t: T) -> T
  3376. pub struct aya::programs::extension::ExtensionLinkId(_)
  3377. impl core::cmp::Eq for aya::programs::extension::ExtensionLinkId
  3378. impl core::cmp::PartialEq for aya::programs::extension::ExtensionLinkId
  3379. pub fn aya::programs::extension::ExtensionLinkId::eq(&self, other: &aya::programs::extension::ExtensionLinkId) -> bool
  3380. impl core::fmt::Debug for aya::programs::extension::ExtensionLinkId
  3381. pub fn aya::programs::extension::ExtensionLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3382. impl core::hash::Hash for aya::programs::extension::ExtensionLinkId
  3383. pub fn aya::programs::extension::ExtensionLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3384. impl core::marker::StructuralPartialEq for aya::programs::extension::ExtensionLinkId
  3385. impl equivalent::Equivalent<aya::programs::extension::ExtensionLink> for aya::programs::extension::ExtensionLinkId
  3386. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &aya::programs::extension::ExtensionLink) -> bool
  3387. impl core::marker::Freeze for aya::programs::extension::ExtensionLinkId
  3388. impl core::marker::Send for aya::programs::extension::ExtensionLinkId
  3389. impl core::marker::Sync for aya::programs::extension::ExtensionLinkId
  3390. impl core::marker::Unpin for aya::programs::extension::ExtensionLinkId
  3391. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLinkId
  3392. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLinkId
  3393. impl<Q, K> equivalent::Equivalent<K> for aya::programs::extension::ExtensionLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3394. pub fn aya::programs::extension::ExtensionLinkId::equivalent(&self, key: &K) -> bool
  3395. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::From<T>
  3396. pub fn aya::programs::extension::ExtensionLinkId::into(self) -> U
  3397. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::Into<T>
  3398. pub type aya::programs::extension::ExtensionLinkId::Error = core::convert::Infallible
  3399. pub fn aya::programs::extension::ExtensionLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3400. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::TryFrom<T>
  3401. pub type aya::programs::extension::ExtensionLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3402. pub fn aya::programs::extension::ExtensionLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3403. impl<T> core::any::Any for aya::programs::extension::ExtensionLinkId where T: 'static + ?core::marker::Sized
  3404. pub fn aya::programs::extension::ExtensionLinkId::type_id(&self) -> core::any::TypeId
  3405. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3406. pub fn aya::programs::extension::ExtensionLinkId::borrow(&self) -> &T
  3407. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLinkId where T: ?core::marker::Sized
  3408. pub fn aya::programs::extension::ExtensionLinkId::borrow_mut(&mut self) -> &mut T
  3409. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLinkId
  3410. pub fn aya::programs::extension::ExtensionLinkId::from(t: T) -> T
  3411. pub mod aya::programs::fentry
  3412. pub struct aya::programs::fentry::FEntry
  3413. impl aya::programs::fentry::FEntry
  3414. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  3415. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  3416. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3417. impl aya::programs::fentry::FEntry
  3418. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3419. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  3420. impl aya::programs::fentry::FEntry
  3421. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3422. impl aya::programs::fentry::FEntry
  3423. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3424. impl aya::programs::fentry::FEntry
  3425. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3426. impl aya::programs::fentry::FEntry
  3427. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3428. impl aya::programs::fentry::FEntry
  3429. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3430. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3431. impl aya::programs::fentry::FEntry
  3432. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3433. impl core::fmt::Debug for aya::programs::fentry::FEntry
  3434. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3435. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  3436. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  3437. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  3438. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3439. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3440. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  3441. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3442. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3443. impl core::marker::Freeze for aya::programs::fentry::FEntry
  3444. impl core::marker::Send for aya::programs::fentry::FEntry
  3445. impl core::marker::Sync for aya::programs::fentry::FEntry
  3446. impl core::marker::Unpin for aya::programs::fentry::FEntry
  3447. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  3448. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  3449. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  3450. pub fn aya::programs::fentry::FEntry::into(self) -> U
  3451. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  3452. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  3453. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3454. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  3455. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  3456. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3457. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  3458. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  3459. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3460. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  3461. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  3462. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  3463. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  3464. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  3465. pub struct aya::programs::fentry::FEntryLink(_)
  3466. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3467. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3468. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3469. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3470. impl core::cmp::Eq for aya::programs::fentry::FEntryLink
  3471. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLink
  3472. pub fn aya::programs::fentry::FEntryLink::eq(&self, other: &Self) -> bool
  3473. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3474. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3475. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3476. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3477. impl core::fmt::Debug for aya::programs::fentry::FEntryLink
  3478. pub fn aya::programs::fentry::FEntryLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3479. impl core::hash::Hash for aya::programs::fentry::FEntryLink
  3480. pub fn aya::programs::fentry::FEntryLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3481. impl core::ops::drop::Drop for aya::programs::fentry::FEntryLink
  3482. pub fn aya::programs::fentry::FEntryLink::drop(&mut self)
  3483. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3484. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3485. impl core::marker::Freeze for aya::programs::fentry::FEntryLink
  3486. impl core::marker::Send for aya::programs::fentry::FEntryLink
  3487. impl core::marker::Sync for aya::programs::fentry::FEntryLink
  3488. impl core::marker::Unpin for aya::programs::fentry::FEntryLink
  3489. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLink
  3490. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLink
  3491. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3492. pub fn aya::programs::fentry::FEntryLink::equivalent(&self, key: &K) -> bool
  3493. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLink where U: core::convert::From<T>
  3494. pub fn aya::programs::fentry::FEntryLink::into(self) -> U
  3495. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLink where U: core::convert::Into<T>
  3496. pub type aya::programs::fentry::FEntryLink::Error = core::convert::Infallible
  3497. pub fn aya::programs::fentry::FEntryLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3498. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLink where U: core::convert::TryFrom<T>
  3499. pub type aya::programs::fentry::FEntryLink::Error = <U as core::convert::TryFrom<T>>::Error
  3500. pub fn aya::programs::fentry::FEntryLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3501. impl<T> core::any::Any for aya::programs::fentry::FEntryLink where T: 'static + ?core::marker::Sized
  3502. pub fn aya::programs::fentry::FEntryLink::type_id(&self) -> core::any::TypeId
  3503. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3504. pub fn aya::programs::fentry::FEntryLink::borrow(&self) -> &T
  3505. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLink where T: ?core::marker::Sized
  3506. pub fn aya::programs::fentry::FEntryLink::borrow_mut(&mut self) -> &mut T
  3507. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLink
  3508. pub fn aya::programs::fentry::FEntryLink::from(t: T) -> T
  3509. pub struct aya::programs::fentry::FEntryLinkId(_)
  3510. impl core::cmp::Eq for aya::programs::fentry::FEntryLinkId
  3511. impl core::cmp::PartialEq for aya::programs::fentry::FEntryLinkId
  3512. pub fn aya::programs::fentry::FEntryLinkId::eq(&self, other: &aya::programs::fentry::FEntryLinkId) -> bool
  3513. impl core::fmt::Debug for aya::programs::fentry::FEntryLinkId
  3514. pub fn aya::programs::fentry::FEntryLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3515. impl core::hash::Hash for aya::programs::fentry::FEntryLinkId
  3516. pub fn aya::programs::fentry::FEntryLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3517. impl core::marker::StructuralPartialEq for aya::programs::fentry::FEntryLinkId
  3518. impl equivalent::Equivalent<aya::programs::fentry::FEntryLink> for aya::programs::fentry::FEntryLinkId
  3519. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &aya::programs::fentry::FEntryLink) -> bool
  3520. impl core::marker::Freeze for aya::programs::fentry::FEntryLinkId
  3521. impl core::marker::Send for aya::programs::fentry::FEntryLinkId
  3522. impl core::marker::Sync for aya::programs::fentry::FEntryLinkId
  3523. impl core::marker::Unpin for aya::programs::fentry::FEntryLinkId
  3524. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLinkId
  3525. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLinkId
  3526. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fentry::FEntryLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3527. pub fn aya::programs::fentry::FEntryLinkId::equivalent(&self, key: &K) -> bool
  3528. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::From<T>
  3529. pub fn aya::programs::fentry::FEntryLinkId::into(self) -> U
  3530. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::Into<T>
  3531. pub type aya::programs::fentry::FEntryLinkId::Error = core::convert::Infallible
  3532. pub fn aya::programs::fentry::FEntryLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3533. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::TryFrom<T>
  3534. pub type aya::programs::fentry::FEntryLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3535. pub fn aya::programs::fentry::FEntryLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3536. impl<T> core::any::Any for aya::programs::fentry::FEntryLinkId where T: 'static + ?core::marker::Sized
  3537. pub fn aya::programs::fentry::FEntryLinkId::type_id(&self) -> core::any::TypeId
  3538. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3539. pub fn aya::programs::fentry::FEntryLinkId::borrow(&self) -> &T
  3540. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLinkId where T: ?core::marker::Sized
  3541. pub fn aya::programs::fentry::FEntryLinkId::borrow_mut(&mut self) -> &mut T
  3542. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLinkId
  3543. pub fn aya::programs::fentry::FEntryLinkId::from(t: T) -> T
  3544. pub mod aya::programs::fexit
  3545. pub struct aya::programs::fexit::FExit
  3546. impl aya::programs::fexit::FExit
  3547. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  3548. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  3549. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3550. impl aya::programs::fexit::FExit
  3551. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3552. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  3553. impl aya::programs::fexit::FExit
  3554. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3555. impl aya::programs::fexit::FExit
  3556. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3557. impl aya::programs::fexit::FExit
  3558. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3559. impl aya::programs::fexit::FExit
  3560. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3561. impl aya::programs::fexit::FExit
  3562. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3563. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3564. impl aya::programs::fexit::FExit
  3565. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3566. impl core::fmt::Debug for aya::programs::fexit::FExit
  3567. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3568. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  3569. pub fn aya::programs::fexit::FExit::drop(&mut self)
  3570. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  3571. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3572. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  3573. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  3574. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3575. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  3576. impl core::marker::Freeze for aya::programs::fexit::FExit
  3577. impl core::marker::Send for aya::programs::fexit::FExit
  3578. impl core::marker::Sync for aya::programs::fexit::FExit
  3579. impl core::marker::Unpin for aya::programs::fexit::FExit
  3580. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  3581. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  3582. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  3583. pub fn aya::programs::fexit::FExit::into(self) -> U
  3584. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  3585. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  3586. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3587. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  3588. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  3589. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3590. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  3591. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  3592. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3593. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  3594. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  3595. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  3596. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  3597. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  3598. pub struct aya::programs::fexit::FExitLink(_)
  3599. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3600. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3601. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3602. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3603. impl core::cmp::Eq for aya::programs::fexit::FExitLink
  3604. impl core::cmp::PartialEq for aya::programs::fexit::FExitLink
  3605. pub fn aya::programs::fexit::FExitLink::eq(&self, other: &Self) -> bool
  3606. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3607. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3608. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3609. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3610. impl core::fmt::Debug for aya::programs::fexit::FExitLink
  3611. pub fn aya::programs::fexit::FExitLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3612. impl core::hash::Hash for aya::programs::fexit::FExitLink
  3613. pub fn aya::programs::fexit::FExitLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3614. impl core::ops::drop::Drop for aya::programs::fexit::FExitLink
  3615. pub fn aya::programs::fexit::FExitLink::drop(&mut self)
  3616. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3617. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3618. impl core::marker::Freeze for aya::programs::fexit::FExitLink
  3619. impl core::marker::Send for aya::programs::fexit::FExitLink
  3620. impl core::marker::Sync for aya::programs::fexit::FExitLink
  3621. impl core::marker::Unpin for aya::programs::fexit::FExitLink
  3622. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLink
  3623. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLink
  3624. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3625. pub fn aya::programs::fexit::FExitLink::equivalent(&self, key: &K) -> bool
  3626. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLink where U: core::convert::From<T>
  3627. pub fn aya::programs::fexit::FExitLink::into(self) -> U
  3628. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLink where U: core::convert::Into<T>
  3629. pub type aya::programs::fexit::FExitLink::Error = core::convert::Infallible
  3630. pub fn aya::programs::fexit::FExitLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3631. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLink where U: core::convert::TryFrom<T>
  3632. pub type aya::programs::fexit::FExitLink::Error = <U as core::convert::TryFrom<T>>::Error
  3633. pub fn aya::programs::fexit::FExitLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3634. impl<T> core::any::Any for aya::programs::fexit::FExitLink where T: 'static + ?core::marker::Sized
  3635. pub fn aya::programs::fexit::FExitLink::type_id(&self) -> core::any::TypeId
  3636. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3637. pub fn aya::programs::fexit::FExitLink::borrow(&self) -> &T
  3638. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLink where T: ?core::marker::Sized
  3639. pub fn aya::programs::fexit::FExitLink::borrow_mut(&mut self) -> &mut T
  3640. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLink
  3641. pub fn aya::programs::fexit::FExitLink::from(t: T) -> T
  3642. pub struct aya::programs::fexit::FExitLinkId(_)
  3643. impl core::cmp::Eq for aya::programs::fexit::FExitLinkId
  3644. impl core::cmp::PartialEq for aya::programs::fexit::FExitLinkId
  3645. pub fn aya::programs::fexit::FExitLinkId::eq(&self, other: &aya::programs::fexit::FExitLinkId) -> bool
  3646. impl core::fmt::Debug for aya::programs::fexit::FExitLinkId
  3647. pub fn aya::programs::fexit::FExitLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3648. impl core::hash::Hash for aya::programs::fexit::FExitLinkId
  3649. pub fn aya::programs::fexit::FExitLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3650. impl core::marker::StructuralPartialEq for aya::programs::fexit::FExitLinkId
  3651. impl equivalent::Equivalent<aya::programs::fexit::FExitLink> for aya::programs::fexit::FExitLinkId
  3652. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &aya::programs::fexit::FExitLink) -> bool
  3653. impl core::marker::Freeze for aya::programs::fexit::FExitLinkId
  3654. impl core::marker::Send for aya::programs::fexit::FExitLinkId
  3655. impl core::marker::Sync for aya::programs::fexit::FExitLinkId
  3656. impl core::marker::Unpin for aya::programs::fexit::FExitLinkId
  3657. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLinkId
  3658. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLinkId
  3659. impl<Q, K> equivalent::Equivalent<K> for aya::programs::fexit::FExitLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3660. pub fn aya::programs::fexit::FExitLinkId::equivalent(&self, key: &K) -> bool
  3661. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLinkId where U: core::convert::From<T>
  3662. pub fn aya::programs::fexit::FExitLinkId::into(self) -> U
  3663. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLinkId where U: core::convert::Into<T>
  3664. pub type aya::programs::fexit::FExitLinkId::Error = core::convert::Infallible
  3665. pub fn aya::programs::fexit::FExitLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3666. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLinkId where U: core::convert::TryFrom<T>
  3667. pub type aya::programs::fexit::FExitLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3668. pub fn aya::programs::fexit::FExitLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3669. impl<T> core::any::Any for aya::programs::fexit::FExitLinkId where T: 'static + ?core::marker::Sized
  3670. pub fn aya::programs::fexit::FExitLinkId::type_id(&self) -> core::any::TypeId
  3671. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3672. pub fn aya::programs::fexit::FExitLinkId::borrow(&self) -> &T
  3673. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLinkId where T: ?core::marker::Sized
  3674. pub fn aya::programs::fexit::FExitLinkId::borrow_mut(&mut self) -> &mut T
  3675. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLinkId
  3676. pub fn aya::programs::fexit::FExitLinkId::from(t: T) -> T
  3677. pub mod aya::programs::flow_dissector
  3678. pub struct aya::programs::flow_dissector::FlowDissector
  3679. impl aya::programs::flow_dissector::FlowDissector
  3680. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  3681. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  3682. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3683. impl aya::programs::flow_dissector::FlowDissector
  3684. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3685. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  3686. impl aya::programs::flow_dissector::FlowDissector
  3687. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3688. impl aya::programs::flow_dissector::FlowDissector
  3689. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3690. impl aya::programs::flow_dissector::FlowDissector
  3691. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3692. impl aya::programs::flow_dissector::FlowDissector
  3693. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3694. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3695. impl aya::programs::flow_dissector::FlowDissector
  3696. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3697. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  3698. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3699. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  3700. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  3701. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  3702. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3703. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3704. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  3705. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  3706. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  3707. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  3708. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  3709. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  3710. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  3711. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  3712. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  3713. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  3714. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  3715. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  3716. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  3717. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3718. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  3719. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  3720. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3721. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  3722. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  3723. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3724. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  3725. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  3726. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  3727. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  3728. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  3729. pub struct aya::programs::flow_dissector::FlowDissectorLink(_)
  3730. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  3731. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  3732. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3733. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  3734. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLink
  3735. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLink
  3736. pub fn aya::programs::flow_dissector::FlowDissectorLink::eq(&self, other: &Self) -> bool
  3737. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLink
  3738. pub fn aya::programs::flow_dissector::FlowDissectorLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3739. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLink
  3740. pub fn aya::programs::flow_dissector::FlowDissectorLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3741. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissectorLink
  3742. pub fn aya::programs::flow_dissector::FlowDissectorLink::drop(&mut self)
  3743. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3744. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3745. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLink
  3746. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLink
  3747. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLink
  3748. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLink
  3749. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3750. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLink
  3751. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3752. pub fn aya::programs::flow_dissector::FlowDissectorLink::equivalent(&self, key: &K) -> bool
  3753. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::From<T>
  3754. pub fn aya::programs::flow_dissector::FlowDissectorLink::into(self) -> U
  3755. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::Into<T>
  3756. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = core::convert::Infallible
  3757. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3758. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLink where U: core::convert::TryFrom<T>
  3759. pub type aya::programs::flow_dissector::FlowDissectorLink::Error = <U as core::convert::TryFrom<T>>::Error
  3760. pub fn aya::programs::flow_dissector::FlowDissectorLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3761. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLink where T: 'static + ?core::marker::Sized
  3762. pub fn aya::programs::flow_dissector::FlowDissectorLink::type_id(&self) -> core::any::TypeId
  3763. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3764. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow(&self) -> &T
  3765. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLink where T: ?core::marker::Sized
  3766. pub fn aya::programs::flow_dissector::FlowDissectorLink::borrow_mut(&mut self) -> &mut T
  3767. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLink
  3768. pub fn aya::programs::flow_dissector::FlowDissectorLink::from(t: T) -> T
  3769. pub struct aya::programs::flow_dissector::FlowDissectorLinkId(_)
  3770. impl core::cmp::Eq for aya::programs::flow_dissector::FlowDissectorLinkId
  3771. impl core::cmp::PartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3772. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::eq(&self, other: &aya::programs::flow_dissector::FlowDissectorLinkId) -> bool
  3773. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissectorLinkId
  3774. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3775. impl core::hash::Hash for aya::programs::flow_dissector::FlowDissectorLinkId
  3776. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3777. impl core::marker::StructuralPartialEq for aya::programs::flow_dissector::FlowDissectorLinkId
  3778. impl equivalent::Equivalent<aya::programs::flow_dissector::FlowDissectorLink> for aya::programs::flow_dissector::FlowDissectorLinkId
  3779. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &aya::programs::flow_dissector::FlowDissectorLink) -> bool
  3780. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissectorLinkId
  3781. impl core::marker::Send for aya::programs::flow_dissector::FlowDissectorLinkId
  3782. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissectorLinkId
  3783. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissectorLinkId
  3784. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3785. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissectorLinkId
  3786. impl<Q, K> equivalent::Equivalent<K> for aya::programs::flow_dissector::FlowDissectorLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3787. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::equivalent(&self, key: &K) -> bool
  3788. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::From<T>
  3789. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::into(self) -> U
  3790. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::Into<T>
  3791. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = core::convert::Infallible
  3792. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3793. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissectorLinkId where U: core::convert::TryFrom<T>
  3794. pub type aya::programs::flow_dissector::FlowDissectorLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3795. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3796. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissectorLinkId where T: 'static + ?core::marker::Sized
  3797. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::type_id(&self) -> core::any::TypeId
  3798. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3799. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow(&self) -> &T
  3800. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissectorLinkId where T: ?core::marker::Sized
  3801. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::borrow_mut(&mut self) -> &mut T
  3802. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissectorLinkId
  3803. pub fn aya::programs::flow_dissector::FlowDissectorLinkId::from(t: T) -> T
  3804. pub mod aya::programs::iter
  3805. pub struct aya::programs::iter::Iter
  3806. impl aya::programs::iter::Iter
  3807. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  3808. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  3809. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3810. impl aya::programs::iter::Iter
  3811. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3812. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  3813. impl aya::programs::iter::Iter
  3814. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3815. impl aya::programs::iter::Iter
  3816. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3817. impl aya::programs::iter::Iter
  3818. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  3819. impl aya::programs::iter::Iter
  3820. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3821. impl aya::programs::iter::Iter
  3822. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3823. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3824. impl aya::programs::iter::Iter
  3825. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3826. impl core::fmt::Debug for aya::programs::iter::Iter
  3827. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3828. impl core::ops::drop::Drop for aya::programs::iter::Iter
  3829. pub fn aya::programs::iter::Iter::drop(&mut self)
  3830. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  3831. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3832. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  3833. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  3834. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  3835. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  3836. impl core::marker::Freeze for aya::programs::iter::Iter
  3837. impl core::marker::Send for aya::programs::iter::Iter
  3838. impl core::marker::Sync for aya::programs::iter::Iter
  3839. impl core::marker::Unpin for aya::programs::iter::Iter
  3840. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  3841. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  3842. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  3843. pub fn aya::programs::iter::Iter::into(self) -> U
  3844. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  3845. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  3846. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3847. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  3848. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  3849. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3850. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  3851. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  3852. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3853. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  3854. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  3855. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  3856. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  3857. pub fn aya::programs::iter::Iter::from(t: T) -> T
  3858. pub struct aya::programs::iter::IterFd
  3859. impl core::fmt::Debug for aya::programs::iter::IterFd
  3860. pub fn aya::programs::iter::IterFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3861. impl std::os::fd::owned::AsFd for aya::programs::iter::IterFd
  3862. pub fn aya::programs::iter::IterFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  3863. impl core::marker::Freeze for aya::programs::iter::IterFd
  3864. impl core::marker::Send for aya::programs::iter::IterFd
  3865. impl core::marker::Sync for aya::programs::iter::IterFd
  3866. impl core::marker::Unpin for aya::programs::iter::IterFd
  3867. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterFd
  3868. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterFd
  3869. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterFd where U: core::convert::From<T>
  3870. pub fn aya::programs::iter::IterFd::into(self) -> U
  3871. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterFd where U: core::convert::Into<T>
  3872. pub type aya::programs::iter::IterFd::Error = core::convert::Infallible
  3873. pub fn aya::programs::iter::IterFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3874. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterFd where U: core::convert::TryFrom<T>
  3875. pub type aya::programs::iter::IterFd::Error = <U as core::convert::TryFrom<T>>::Error
  3876. pub fn aya::programs::iter::IterFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3877. impl<T> core::any::Any for aya::programs::iter::IterFd where T: 'static + ?core::marker::Sized
  3878. pub fn aya::programs::iter::IterFd::type_id(&self) -> core::any::TypeId
  3879. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3880. pub fn aya::programs::iter::IterFd::borrow(&self) -> &T
  3881. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterFd where T: ?core::marker::Sized
  3882. pub fn aya::programs::iter::IterFd::borrow_mut(&mut self) -> &mut T
  3883. impl<T> core::convert::From<T> for aya::programs::iter::IterFd
  3884. pub fn aya::programs::iter::IterFd::from(t: T) -> T
  3885. pub struct aya::programs::iter::IterLink(_)
  3886. impl aya::programs::iter::IterLink
  3887. pub fn aya::programs::iter::IterLink::into_file(self) -> core::result::Result<std::fs::File, aya::programs::links::LinkError>
  3888. impl aya::programs::links::Link for aya::programs::iter::IterLink
  3889. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  3890. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3891. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  3892. impl core::cmp::Eq for aya::programs::iter::IterLink
  3893. impl core::cmp::PartialEq for aya::programs::iter::IterLink
  3894. pub fn aya::programs::iter::IterLink::eq(&self, other: &Self) -> bool
  3895. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  3896. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3897. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  3898. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  3899. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  3900. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3901. impl core::fmt::Debug for aya::programs::iter::IterLink
  3902. pub fn aya::programs::iter::IterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3903. impl core::hash::Hash for aya::programs::iter::IterLink
  3904. pub fn aya::programs::iter::IterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  3905. impl core::ops::drop::Drop for aya::programs::iter::IterLink
  3906. pub fn aya::programs::iter::IterLink::drop(&mut self)
  3907. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  3908. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  3909. impl core::marker::Freeze for aya::programs::iter::IterLink
  3910. impl core::marker::Send for aya::programs::iter::IterLink
  3911. impl core::marker::Sync for aya::programs::iter::IterLink
  3912. impl core::marker::Unpin for aya::programs::iter::IterLink
  3913. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLink
  3914. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLink
  3915. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3916. pub fn aya::programs::iter::IterLink::equivalent(&self, key: &K) -> bool
  3917. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLink where U: core::convert::From<T>
  3918. pub fn aya::programs::iter::IterLink::into(self) -> U
  3919. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLink where U: core::convert::Into<T>
  3920. pub type aya::programs::iter::IterLink::Error = core::convert::Infallible
  3921. pub fn aya::programs::iter::IterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3922. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLink where U: core::convert::TryFrom<T>
  3923. pub type aya::programs::iter::IterLink::Error = <U as core::convert::TryFrom<T>>::Error
  3924. pub fn aya::programs::iter::IterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3925. impl<T> core::any::Any for aya::programs::iter::IterLink where T: 'static + ?core::marker::Sized
  3926. pub fn aya::programs::iter::IterLink::type_id(&self) -> core::any::TypeId
  3927. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  3928. pub fn aya::programs::iter::IterLink::borrow(&self) -> &T
  3929. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLink where T: ?core::marker::Sized
  3930. pub fn aya::programs::iter::IterLink::borrow_mut(&mut self) -> &mut T
  3931. impl<T> core::convert::From<T> for aya::programs::iter::IterLink
  3932. pub fn aya::programs::iter::IterLink::from(t: T) -> T
  3933. pub struct aya::programs::iter::IterLinkId(_)
  3934. impl core::cmp::Eq for aya::programs::iter::IterLinkId
  3935. impl core::cmp::PartialEq for aya::programs::iter::IterLinkId
  3936. pub fn aya::programs::iter::IterLinkId::eq(&self, other: &aya::programs::iter::IterLinkId) -> bool
  3937. impl core::fmt::Debug for aya::programs::iter::IterLinkId
  3938. pub fn aya::programs::iter::IterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3939. impl core::hash::Hash for aya::programs::iter::IterLinkId
  3940. pub fn aya::programs::iter::IterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3941. impl core::marker::StructuralPartialEq for aya::programs::iter::IterLinkId
  3942. impl equivalent::Equivalent<aya::programs::iter::IterLink> for aya::programs::iter::IterLinkId
  3943. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &aya::programs::iter::IterLink) -> bool
  3944. impl core::marker::Freeze for aya::programs::iter::IterLinkId
  3945. impl core::marker::Send for aya::programs::iter::IterLinkId
  3946. impl core::marker::Sync for aya::programs::iter::IterLinkId
  3947. impl core::marker::Unpin for aya::programs::iter::IterLinkId
  3948. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::IterLinkId
  3949. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::IterLinkId
  3950. impl<Q, K> equivalent::Equivalent<K> for aya::programs::iter::IterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  3951. pub fn aya::programs::iter::IterLinkId::equivalent(&self, key: &K) -> bool
  3952. impl<T, U> core::convert::Into<U> for aya::programs::iter::IterLinkId where U: core::convert::From<T>
  3953. pub fn aya::programs::iter::IterLinkId::into(self) -> U
  3954. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::IterLinkId where U: core::convert::Into<T>
  3955. pub type aya::programs::iter::IterLinkId::Error = core::convert::Infallible
  3956. pub fn aya::programs::iter::IterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3957. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::IterLinkId where U: core::convert::TryFrom<T>
  3958. pub type aya::programs::iter::IterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3959. pub fn aya::programs::iter::IterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3960. impl<T> core::any::Any for aya::programs::iter::IterLinkId where T: 'static + ?core::marker::Sized
  3961. pub fn aya::programs::iter::IterLinkId::type_id(&self) -> core::any::TypeId
  3962. impl<T> core::borrow::Borrow<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  3963. pub fn aya::programs::iter::IterLinkId::borrow(&self) -> &T
  3964. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::IterLinkId where T: ?core::marker::Sized
  3965. pub fn aya::programs::iter::IterLinkId::borrow_mut(&mut self) -> &mut T
  3966. impl<T> core::convert::From<T> for aya::programs::iter::IterLinkId
  3967. pub fn aya::programs::iter::IterLinkId::from(t: T) -> T
  3968. pub mod aya::programs::kprobe
  3969. pub enum aya::programs::kprobe::KProbeError
  3970. pub aya::programs::kprobe::KProbeError::FileError
  3971. pub aya::programs::kprobe::KProbeError::FileError::filename: std::path::PathBuf
  3972. pub aya::programs::kprobe::KProbeError::FileError::io_error: std::io::error::Error
  3973. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  3974. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  3975. impl core::error::Error for aya::programs::kprobe::KProbeError
  3976. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  3977. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  3978. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3979. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  3980. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3981. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  3982. impl core::marker::Send for aya::programs::kprobe::KProbeError
  3983. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  3984. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  3985. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  3986. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  3987. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  3988. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  3989. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  3990. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  3991. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3992. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  3993. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  3994. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3995. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  3996. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  3997. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  3998. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  3999. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4000. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  4001. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  4002. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  4003. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  4004. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  4005. pub struct aya::programs::kprobe::KProbe
  4006. impl aya::programs::kprobe::KProbe
  4007. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  4008. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  4009. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4010. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  4011. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4012. impl aya::programs::kprobe::KProbe
  4013. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4014. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  4015. impl aya::programs::kprobe::KProbe
  4016. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4017. impl aya::programs::kprobe::KProbe
  4018. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4019. impl aya::programs::kprobe::KProbe
  4020. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4021. impl aya::programs::kprobe::KProbe
  4022. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4023. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4024. impl aya::programs::kprobe::KProbe
  4025. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4026. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  4027. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4028. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  4029. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  4030. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  4031. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4032. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  4033. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  4034. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  4035. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  4036. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  4037. impl core::marker::Send for aya::programs::kprobe::KProbe
  4038. impl core::marker::Sync for aya::programs::kprobe::KProbe
  4039. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  4040. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  4041. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  4042. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  4043. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  4044. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  4045. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  4046. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4047. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  4048. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  4049. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4050. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  4051. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  4052. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4053. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  4054. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  4055. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  4056. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  4057. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  4058. pub struct aya::programs::kprobe::KProbeLink(_)
  4059. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4060. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4061. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4062. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4063. impl core::cmp::Eq for aya::programs::kprobe::KProbeLink
  4064. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLink
  4065. pub fn aya::programs::kprobe::KProbeLink::eq(&self, other: &Self) -> bool
  4066. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4067. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4068. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4069. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4070. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4071. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4072. impl core::fmt::Debug for aya::programs::kprobe::KProbeLink
  4073. pub fn aya::programs::kprobe::KProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4074. impl core::hash::Hash for aya::programs::kprobe::KProbeLink
  4075. pub fn aya::programs::kprobe::KProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4076. impl core::ops::drop::Drop for aya::programs::kprobe::KProbeLink
  4077. pub fn aya::programs::kprobe::KProbeLink::drop(&mut self)
  4078. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4079. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4080. impl core::marker::Freeze for aya::programs::kprobe::KProbeLink
  4081. impl core::marker::Send for aya::programs::kprobe::KProbeLink
  4082. impl core::marker::Sync for aya::programs::kprobe::KProbeLink
  4083. impl core::marker::Unpin for aya::programs::kprobe::KProbeLink
  4084. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLink
  4085. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLink
  4086. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4087. pub fn aya::programs::kprobe::KProbeLink::equivalent(&self, key: &K) -> bool
  4088. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLink where U: core::convert::From<T>
  4089. pub fn aya::programs::kprobe::KProbeLink::into(self) -> U
  4090. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLink where U: core::convert::Into<T>
  4091. pub type aya::programs::kprobe::KProbeLink::Error = core::convert::Infallible
  4092. pub fn aya::programs::kprobe::KProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4093. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLink where U: core::convert::TryFrom<T>
  4094. pub type aya::programs::kprobe::KProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  4095. pub fn aya::programs::kprobe::KProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4096. impl<T> core::any::Any for aya::programs::kprobe::KProbeLink where T: 'static + ?core::marker::Sized
  4097. pub fn aya::programs::kprobe::KProbeLink::type_id(&self) -> core::any::TypeId
  4098. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4099. pub fn aya::programs::kprobe::KProbeLink::borrow(&self) -> &T
  4100. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLink where T: ?core::marker::Sized
  4101. pub fn aya::programs::kprobe::KProbeLink::borrow_mut(&mut self) -> &mut T
  4102. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLink
  4103. pub fn aya::programs::kprobe::KProbeLink::from(t: T) -> T
  4104. pub struct aya::programs::kprobe::KProbeLinkId(_)
  4105. impl core::cmp::Eq for aya::programs::kprobe::KProbeLinkId
  4106. impl core::cmp::PartialEq for aya::programs::kprobe::KProbeLinkId
  4107. pub fn aya::programs::kprobe::KProbeLinkId::eq(&self, other: &aya::programs::kprobe::KProbeLinkId) -> bool
  4108. impl core::fmt::Debug for aya::programs::kprobe::KProbeLinkId
  4109. pub fn aya::programs::kprobe::KProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4110. impl core::hash::Hash for aya::programs::kprobe::KProbeLinkId
  4111. pub fn aya::programs::kprobe::KProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4112. impl core::marker::StructuralPartialEq for aya::programs::kprobe::KProbeLinkId
  4113. impl equivalent::Equivalent<aya::programs::kprobe::KProbeLink> for aya::programs::kprobe::KProbeLinkId
  4114. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &aya::programs::kprobe::KProbeLink) -> bool
  4115. impl core::marker::Freeze for aya::programs::kprobe::KProbeLinkId
  4116. impl core::marker::Send for aya::programs::kprobe::KProbeLinkId
  4117. impl core::marker::Sync for aya::programs::kprobe::KProbeLinkId
  4118. impl core::marker::Unpin for aya::programs::kprobe::KProbeLinkId
  4119. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLinkId
  4120. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLinkId
  4121. impl<Q, K> equivalent::Equivalent<K> for aya::programs::kprobe::KProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4122. pub fn aya::programs::kprobe::KProbeLinkId::equivalent(&self, key: &K) -> bool
  4123. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::From<T>
  4124. pub fn aya::programs::kprobe::KProbeLinkId::into(self) -> U
  4125. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::Into<T>
  4126. pub type aya::programs::kprobe::KProbeLinkId::Error = core::convert::Infallible
  4127. pub fn aya::programs::kprobe::KProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4128. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::TryFrom<T>
  4129. pub type aya::programs::kprobe::KProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4130. pub fn aya::programs::kprobe::KProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4131. impl<T> core::any::Any for aya::programs::kprobe::KProbeLinkId where T: 'static + ?core::marker::Sized
  4132. pub fn aya::programs::kprobe::KProbeLinkId::type_id(&self) -> core::any::TypeId
  4133. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4134. pub fn aya::programs::kprobe::KProbeLinkId::borrow(&self) -> &T
  4135. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLinkId where T: ?core::marker::Sized
  4136. pub fn aya::programs::kprobe::KProbeLinkId::borrow_mut(&mut self) -> &mut T
  4137. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLinkId
  4138. pub fn aya::programs::kprobe::KProbeLinkId::from(t: T) -> T
  4139. pub mod aya::programs::links
  4140. pub enum aya::programs::links::CgroupAttachMode
  4141. pub aya::programs::links::CgroupAttachMode::AllowMultiple
  4142. pub aya::programs::links::CgroupAttachMode::AllowOverride
  4143. pub aya::programs::links::CgroupAttachMode::Single
  4144. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  4145. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  4146. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  4147. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  4148. impl core::default::Default for aya::programs::links::CgroupAttachMode
  4149. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  4150. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  4151. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4152. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  4153. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  4154. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  4155. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  4156. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  4157. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  4158. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  4159. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  4160. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  4161. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  4162. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  4163. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4164. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  4165. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  4166. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4167. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4168. pub type aya::programs::links::CgroupAttachMode::Owned = T
  4169. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  4170. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  4171. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  4172. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  4173. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4174. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  4175. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  4176. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  4177. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  4178. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  4179. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  4180. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  4181. pub enum aya::programs::links::LinkError
  4182. pub aya::programs::links::LinkError::InvalidLink
  4183. pub aya::programs::links::LinkError::SyscallError(aya::sys::SyscallError)
  4184. pub aya::programs::links::LinkError::UnknownLinkType(u32)
  4185. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  4186. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  4187. impl core::error::Error for aya::programs::links::LinkError
  4188. pub fn aya::programs::links::LinkError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4189. impl core::fmt::Debug for aya::programs::links::LinkError
  4190. pub fn aya::programs::links::LinkError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4191. impl core::fmt::Display for aya::programs::links::LinkError
  4192. pub fn aya::programs::links::LinkError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4193. impl core::marker::Freeze for aya::programs::links::LinkError
  4194. impl core::marker::Send for aya::programs::links::LinkError
  4195. impl core::marker::Sync for aya::programs::links::LinkError
  4196. impl core::marker::Unpin for aya::programs::links::LinkError
  4197. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkError
  4198. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkError
  4199. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkError where U: core::convert::From<T>
  4200. pub fn aya::programs::links::LinkError::into(self) -> U
  4201. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkError where U: core::convert::Into<T>
  4202. pub type aya::programs::links::LinkError::Error = core::convert::Infallible
  4203. pub fn aya::programs::links::LinkError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4204. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkError where U: core::convert::TryFrom<T>
  4205. pub type aya::programs::links::LinkError::Error = <U as core::convert::TryFrom<T>>::Error
  4206. pub fn aya::programs::links::LinkError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4207. impl<T> alloc::string::ToString for aya::programs::links::LinkError where T: core::fmt::Display + ?core::marker::Sized
  4208. pub fn aya::programs::links::LinkError::to_string(&self) -> alloc::string::String
  4209. impl<T> core::any::Any for aya::programs::links::LinkError where T: 'static + ?core::marker::Sized
  4210. pub fn aya::programs::links::LinkError::type_id(&self) -> core::any::TypeId
  4211. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4212. pub fn aya::programs::links::LinkError::borrow(&self) -> &T
  4213. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkError where T: ?core::marker::Sized
  4214. pub fn aya::programs::links::LinkError::borrow_mut(&mut self) -> &mut T
  4215. impl<T> core::convert::From<T> for aya::programs::links::LinkError
  4216. pub fn aya::programs::links::LinkError::from(t: T) -> T
  4217. #[non_exhaustive] pub enum aya::programs::links::LinkType
  4218. pub aya::programs::links::LinkType::Cgroup = 3
  4219. pub aya::programs::links::LinkType::Iter = 4
  4220. pub aya::programs::links::LinkType::KProbeMulti = 8
  4221. pub aya::programs::links::LinkType::Netfilter = 10
  4222. pub aya::programs::links::LinkType::Netkit = 13
  4223. pub aya::programs::links::LinkType::Netns = 5
  4224. pub aya::programs::links::LinkType::PerfEvent = 7
  4225. pub aya::programs::links::LinkType::RawTracePoint = 1
  4226. pub aya::programs::links::LinkType::StructOps = 9
  4227. pub aya::programs::links::LinkType::Tcx = 11
  4228. pub aya::programs::links::LinkType::Tracing = 2
  4229. pub aya::programs::links::LinkType::UProbeMulti = 12
  4230. pub aya::programs::links::LinkType::Unspecified = 0
  4231. pub aya::programs::links::LinkType::Xdp = 6
  4232. impl core::clone::Clone for aya::programs::links::LinkType
  4233. pub fn aya::programs::links::LinkType::clone(&self) -> aya::programs::links::LinkType
  4234. impl core::cmp::PartialEq for aya::programs::links::LinkType
  4235. pub fn aya::programs::links::LinkType::eq(&self, other: &aya::programs::links::LinkType) -> bool
  4236. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_link_type> for aya::programs::links::LinkType
  4237. pub type aya::programs::links::LinkType::Error = aya::programs::links::LinkError
  4238. pub fn aya::programs::links::LinkType::try_from(link_type: aya_obj::generated::linux_bindings_x86_64::bpf_link_type) -> core::result::Result<Self, Self::Error>
  4239. impl core::fmt::Debug for aya::programs::links::LinkType
  4240. pub fn aya::programs::links::LinkType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4241. impl core::marker::Copy for aya::programs::links::LinkType
  4242. impl core::marker::StructuralPartialEq for aya::programs::links::LinkType
  4243. impl core::marker::Freeze for aya::programs::links::LinkType
  4244. impl core::marker::Send for aya::programs::links::LinkType
  4245. impl core::marker::Sync for aya::programs::links::LinkType
  4246. impl core::marker::Unpin for aya::programs::links::LinkType
  4247. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkType
  4248. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkType
  4249. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkType where U: core::convert::From<T>
  4250. pub fn aya::programs::links::LinkType::into(self) -> U
  4251. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkType where U: core::convert::Into<T>
  4252. pub type aya::programs::links::LinkType::Error = core::convert::Infallible
  4253. pub fn aya::programs::links::LinkType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4254. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkType where U: core::convert::TryFrom<T>
  4255. pub type aya::programs::links::LinkType::Error = <U as core::convert::TryFrom<T>>::Error
  4256. pub fn aya::programs::links::LinkType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4257. impl<T> alloc::borrow::ToOwned for aya::programs::links::LinkType where T: core::clone::Clone
  4258. pub type aya::programs::links::LinkType::Owned = T
  4259. pub fn aya::programs::links::LinkType::clone_into(&self, target: &mut T)
  4260. pub fn aya::programs::links::LinkType::to_owned(&self) -> T
  4261. impl<T> core::any::Any for aya::programs::links::LinkType where T: 'static + ?core::marker::Sized
  4262. pub fn aya::programs::links::LinkType::type_id(&self) -> core::any::TypeId
  4263. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4264. pub fn aya::programs::links::LinkType::borrow(&self) -> &T
  4265. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkType where T: ?core::marker::Sized
  4266. pub fn aya::programs::links::LinkType::borrow_mut(&mut self) -> &mut T
  4267. impl<T> core::clone::CloneToUninit for aya::programs::links::LinkType where T: core::clone::Clone
  4268. pub unsafe fn aya::programs::links::LinkType::clone_to_uninit(&self, dest: *mut u8)
  4269. impl<T> core::convert::From<T> for aya::programs::links::LinkType
  4270. pub fn aya::programs::links::LinkType::from(t: T) -> T
  4271. pub struct aya::programs::links::FdLink
  4272. impl aya::programs::links::FdLink
  4273. pub fn aya::programs::links::FdLink::info(&self) -> core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>
  4274. pub fn aya::programs::links::FdLink::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<aya::programs::links::PinnedLink, aya::pin::PinError>
  4275. impl aya::programs::links::Link for aya::programs::links::FdLink
  4276. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4277. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4278. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4279. impl core::cmp::Eq for aya::programs::links::FdLink
  4280. impl core::cmp::PartialEq for aya::programs::links::FdLink
  4281. pub fn aya::programs::links::FdLink::eq(&self, other: &Self) -> bool
  4282. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  4283. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  4284. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  4285. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  4286. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  4287. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  4288. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  4289. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  4290. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  4291. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  4292. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  4293. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  4294. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  4295. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  4296. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  4297. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  4298. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  4299. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  4300. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  4301. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  4302. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4303. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4304. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  4305. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  4306. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  4307. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  4308. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  4309. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  4310. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  4311. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  4312. impl core::convert::TryFrom<aya::programs::cgroup_skb::CgroupSkbLink> for aya::programs::links::FdLink
  4313. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4314. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_skb::CgroupSkbLink) -> core::result::Result<Self, Self::Error>
  4315. impl core::convert::TryFrom<aya::programs::cgroup_sock::CgroupSockLink> for aya::programs::links::FdLink
  4316. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4317. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock::CgroupSockLink) -> core::result::Result<Self, Self::Error>
  4318. impl core::convert::TryFrom<aya::programs::cgroup_sock_addr::CgroupSockAddrLink> for aya::programs::links::FdLink
  4319. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4320. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::cgroup_sock_addr::CgroupSockAddrLink) -> core::result::Result<Self, Self::Error>
  4321. impl core::convert::TryFrom<aya::programs::iter::IterLink> for aya::programs::links::FdLink
  4322. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4323. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::iter::IterLink) -> core::result::Result<Self, Self::Error>
  4324. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  4325. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4326. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  4327. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::iter::IterLink
  4328. pub type aya::programs::iter::IterLink::Error = aya::programs::links::LinkError
  4329. pub fn aya::programs::iter::IterLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4330. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  4331. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  4332. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4333. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  4334. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  4335. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4336. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  4337. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  4338. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4339. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  4340. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  4341. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4342. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  4343. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  4344. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4345. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  4346. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  4347. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4348. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  4349. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4350. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  4351. impl core::convert::TryFrom<aya::programs::sock_ops::SockOpsLink> for aya::programs::links::FdLink
  4352. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4353. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::sock_ops::SockOpsLink) -> core::result::Result<Self, Self::Error>
  4354. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  4355. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4356. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4357. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  4358. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4359. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  4360. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  4361. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4362. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  4363. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  4364. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4365. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  4366. impl core::fmt::Debug for aya::programs::links::FdLink
  4367. pub fn aya::programs::links::FdLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4368. impl core::hash::Hash for aya::programs::links::FdLink
  4369. pub fn aya::programs::links::FdLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4370. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4371. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4372. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  4373. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4374. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  4375. impl core::marker::Freeze for aya::programs::links::FdLink
  4376. impl core::marker::Send for aya::programs::links::FdLink
  4377. impl core::marker::Sync for aya::programs::links::FdLink
  4378. impl core::marker::Unpin for aya::programs::links::FdLink
  4379. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLink
  4380. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLink
  4381. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4382. pub fn aya::programs::links::FdLink::equivalent(&self, key: &K) -> bool
  4383. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLink where U: core::convert::From<T>
  4384. pub fn aya::programs::links::FdLink::into(self) -> U
  4385. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLink where U: core::convert::Into<T>
  4386. pub type aya::programs::links::FdLink::Error = core::convert::Infallible
  4387. pub fn aya::programs::links::FdLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4388. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLink where U: core::convert::TryFrom<T>
  4389. pub type aya::programs::links::FdLink::Error = <U as core::convert::TryFrom<T>>::Error
  4390. pub fn aya::programs::links::FdLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4391. impl<T> core::any::Any for aya::programs::links::FdLink where T: 'static + ?core::marker::Sized
  4392. pub fn aya::programs::links::FdLink::type_id(&self) -> core::any::TypeId
  4393. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4394. pub fn aya::programs::links::FdLink::borrow(&self) -> &T
  4395. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLink where T: ?core::marker::Sized
  4396. pub fn aya::programs::links::FdLink::borrow_mut(&mut self) -> &mut T
  4397. impl<T> core::convert::From<T> for aya::programs::links::FdLink
  4398. pub fn aya::programs::links::FdLink::from(t: T) -> T
  4399. pub struct aya::programs::links::FdLinkId(_)
  4400. impl core::cmp::Eq for aya::programs::links::FdLinkId
  4401. impl core::cmp::PartialEq for aya::programs::links::FdLinkId
  4402. pub fn aya::programs::links::FdLinkId::eq(&self, other: &aya::programs::links::FdLinkId) -> bool
  4403. impl core::fmt::Debug for aya::programs::links::FdLinkId
  4404. pub fn aya::programs::links::FdLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4405. impl core::hash::Hash for aya::programs::links::FdLinkId
  4406. pub fn aya::programs::links::FdLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4407. impl core::marker::StructuralPartialEq for aya::programs::links::FdLinkId
  4408. impl equivalent::Equivalent<aya::programs::links::FdLink> for aya::programs::links::FdLinkId
  4409. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &aya::programs::links::FdLink) -> bool
  4410. impl core::marker::Freeze for aya::programs::links::FdLinkId
  4411. impl core::marker::Send for aya::programs::links::FdLinkId
  4412. impl core::marker::Sync for aya::programs::links::FdLinkId
  4413. impl core::marker::Unpin for aya::programs::links::FdLinkId
  4414. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLinkId
  4415. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLinkId
  4416. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::FdLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4417. pub fn aya::programs::links::FdLinkId::equivalent(&self, key: &K) -> bool
  4418. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLinkId where U: core::convert::From<T>
  4419. pub fn aya::programs::links::FdLinkId::into(self) -> U
  4420. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLinkId where U: core::convert::Into<T>
  4421. pub type aya::programs::links::FdLinkId::Error = core::convert::Infallible
  4422. pub fn aya::programs::links::FdLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4423. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLinkId where U: core::convert::TryFrom<T>
  4424. pub type aya::programs::links::FdLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4425. pub fn aya::programs::links::FdLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4426. impl<T> core::any::Any for aya::programs::links::FdLinkId where T: 'static + ?core::marker::Sized
  4427. pub fn aya::programs::links::FdLinkId::type_id(&self) -> core::any::TypeId
  4428. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4429. pub fn aya::programs::links::FdLinkId::borrow(&self) -> &T
  4430. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLinkId where T: ?core::marker::Sized
  4431. pub fn aya::programs::links::FdLinkId::borrow_mut(&mut self) -> &mut T
  4432. impl<T> core::convert::From<T> for aya::programs::links::FdLinkId
  4433. pub fn aya::programs::links::FdLinkId::from(t: T) -> T
  4434. pub struct aya::programs::links::LinkInfo(_)
  4435. impl aya::programs::links::LinkInfo
  4436. pub fn aya::programs::links::LinkInfo::id(&self) -> u32
  4437. pub fn aya::programs::links::LinkInfo::link_type(&self) -> core::result::Result<aya::programs::links::LinkType, aya::programs::links::LinkError>
  4438. pub fn aya::programs::links::LinkInfo::program_id(&self) -> u32
  4439. impl core::marker::Freeze for aya::programs::links::LinkInfo
  4440. impl core::marker::Send for aya::programs::links::LinkInfo
  4441. impl core::marker::Sync for aya::programs::links::LinkInfo
  4442. impl core::marker::Unpin for aya::programs::links::LinkInfo
  4443. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkInfo
  4444. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkInfo
  4445. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkInfo where U: core::convert::From<T>
  4446. pub fn aya::programs::links::LinkInfo::into(self) -> U
  4447. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkInfo where U: core::convert::Into<T>
  4448. pub type aya::programs::links::LinkInfo::Error = core::convert::Infallible
  4449. pub fn aya::programs::links::LinkInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4450. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkInfo where U: core::convert::TryFrom<T>
  4451. pub type aya::programs::links::LinkInfo::Error = <U as core::convert::TryFrom<T>>::Error
  4452. pub fn aya::programs::links::LinkInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4453. impl<T> core::any::Any for aya::programs::links::LinkInfo where T: 'static + ?core::marker::Sized
  4454. pub fn aya::programs::links::LinkInfo::type_id(&self) -> core::any::TypeId
  4455. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4456. pub fn aya::programs::links::LinkInfo::borrow(&self) -> &T
  4457. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkInfo where T: ?core::marker::Sized
  4458. pub fn aya::programs::links::LinkInfo::borrow_mut(&mut self) -> &mut T
  4459. impl<T> core::convert::From<T> for aya::programs::links::LinkInfo
  4460. pub fn aya::programs::links::LinkInfo::from(t: T) -> T
  4461. pub struct aya::programs::links::LinkOrder
  4462. impl aya::programs::links::LinkOrder
  4463. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4464. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4465. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  4466. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  4467. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  4468. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  4469. pub fn aya::programs::links::LinkOrder::first() -> Self
  4470. pub fn aya::programs::links::LinkOrder::last() -> Self
  4471. impl core::default::Default for aya::programs::links::LinkOrder
  4472. pub fn aya::programs::links::LinkOrder::default() -> Self
  4473. impl core::fmt::Debug for aya::programs::links::LinkOrder
  4474. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4475. impl core::marker::Freeze for aya::programs::links::LinkOrder
  4476. impl core::marker::Send for aya::programs::links::LinkOrder
  4477. impl core::marker::Sync for aya::programs::links::LinkOrder
  4478. impl core::marker::Unpin for aya::programs::links::LinkOrder
  4479. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  4480. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  4481. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  4482. pub fn aya::programs::links::LinkOrder::into(self) -> U
  4483. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  4484. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  4485. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4486. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  4487. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  4488. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4489. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  4490. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  4491. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4492. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  4493. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  4494. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  4495. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  4496. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  4497. pub struct aya::programs::links::PinnedLink
  4498. impl aya::programs::links::PinnedLink
  4499. pub fn aya::programs::links::PinnedLink::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::links::LinkError>
  4500. pub fn aya::programs::links::PinnedLink::unpin(self) -> core::result::Result<aya::programs::links::FdLink, std::io::error::Error>
  4501. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  4502. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  4503. impl core::fmt::Debug for aya::programs::links::PinnedLink
  4504. pub fn aya::programs::links::PinnedLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4505. impl core::marker::Freeze for aya::programs::links::PinnedLink
  4506. impl core::marker::Send for aya::programs::links::PinnedLink
  4507. impl core::marker::Sync for aya::programs::links::PinnedLink
  4508. impl core::marker::Unpin for aya::programs::links::PinnedLink
  4509. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::PinnedLink
  4510. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::PinnedLink
  4511. impl<T, U> core::convert::Into<U> for aya::programs::links::PinnedLink where U: core::convert::From<T>
  4512. pub fn aya::programs::links::PinnedLink::into(self) -> U
  4513. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::PinnedLink where U: core::convert::Into<T>
  4514. pub type aya::programs::links::PinnedLink::Error = core::convert::Infallible
  4515. pub fn aya::programs::links::PinnedLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4516. impl<T, U> core::convert::TryInto<U> for aya::programs::links::PinnedLink where U: core::convert::TryFrom<T>
  4517. pub type aya::programs::links::PinnedLink::Error = <U as core::convert::TryFrom<T>>::Error
  4518. pub fn aya::programs::links::PinnedLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4519. impl<T> core::any::Any for aya::programs::links::PinnedLink where T: 'static + ?core::marker::Sized
  4520. pub fn aya::programs::links::PinnedLink::type_id(&self) -> core::any::TypeId
  4521. impl<T> core::borrow::Borrow<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4522. pub fn aya::programs::links::PinnedLink::borrow(&self) -> &T
  4523. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::PinnedLink where T: ?core::marker::Sized
  4524. pub fn aya::programs::links::PinnedLink::borrow_mut(&mut self) -> &mut T
  4525. impl<T> core::convert::From<T> for aya::programs::links::PinnedLink
  4526. pub fn aya::programs::links::PinnedLink::from(t: T) -> T
  4527. pub struct aya::programs::links::ProgAttachLink
  4528. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4529. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4530. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4531. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4532. impl core::cmp::Eq for aya::programs::links::ProgAttachLink
  4533. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLink
  4534. pub fn aya::programs::links::ProgAttachLink::eq(&self, other: &Self) -> bool
  4535. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  4536. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  4537. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  4538. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  4539. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  4540. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  4541. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  4542. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  4543. impl core::fmt::Debug for aya::programs::links::ProgAttachLink
  4544. pub fn aya::programs::links::ProgAttachLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4545. impl core::hash::Hash for aya::programs::links::ProgAttachLink
  4546. pub fn aya::programs::links::ProgAttachLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4547. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4548. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4549. impl core::marker::Freeze for aya::programs::links::ProgAttachLink
  4550. impl core::marker::Send for aya::programs::links::ProgAttachLink
  4551. impl core::marker::Sync for aya::programs::links::ProgAttachLink
  4552. impl core::marker::Unpin for aya::programs::links::ProgAttachLink
  4553. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLink
  4554. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLink
  4555. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4556. pub fn aya::programs::links::ProgAttachLink::equivalent(&self, key: &K) -> bool
  4557. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLink where U: core::convert::From<T>
  4558. pub fn aya::programs::links::ProgAttachLink::into(self) -> U
  4559. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLink where U: core::convert::Into<T>
  4560. pub type aya::programs::links::ProgAttachLink::Error = core::convert::Infallible
  4561. pub fn aya::programs::links::ProgAttachLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4562. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLink where U: core::convert::TryFrom<T>
  4563. pub type aya::programs::links::ProgAttachLink::Error = <U as core::convert::TryFrom<T>>::Error
  4564. pub fn aya::programs::links::ProgAttachLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4565. impl<T> core::any::Any for aya::programs::links::ProgAttachLink where T: 'static + ?core::marker::Sized
  4566. pub fn aya::programs::links::ProgAttachLink::type_id(&self) -> core::any::TypeId
  4567. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4568. pub fn aya::programs::links::ProgAttachLink::borrow(&self) -> &T
  4569. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLink where T: ?core::marker::Sized
  4570. pub fn aya::programs::links::ProgAttachLink::borrow_mut(&mut self) -> &mut T
  4571. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLink
  4572. pub fn aya::programs::links::ProgAttachLink::from(t: T) -> T
  4573. pub struct aya::programs::links::ProgAttachLinkId(_, _, _)
  4574. impl core::cmp::Eq for aya::programs::links::ProgAttachLinkId
  4575. impl core::cmp::PartialEq for aya::programs::links::ProgAttachLinkId
  4576. pub fn aya::programs::links::ProgAttachLinkId::eq(&self, other: &aya::programs::links::ProgAttachLinkId) -> bool
  4577. impl core::fmt::Debug for aya::programs::links::ProgAttachLinkId
  4578. pub fn aya::programs::links::ProgAttachLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4579. impl core::hash::Hash for aya::programs::links::ProgAttachLinkId
  4580. pub fn aya::programs::links::ProgAttachLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4581. impl core::marker::StructuralPartialEq for aya::programs::links::ProgAttachLinkId
  4582. impl equivalent::Equivalent<aya::programs::links::ProgAttachLink> for aya::programs::links::ProgAttachLinkId
  4583. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &aya::programs::links::ProgAttachLink) -> bool
  4584. impl core::marker::Freeze for aya::programs::links::ProgAttachLinkId
  4585. impl core::marker::Send for aya::programs::links::ProgAttachLinkId
  4586. impl core::marker::Sync for aya::programs::links::ProgAttachLinkId
  4587. impl core::marker::Unpin for aya::programs::links::ProgAttachLinkId
  4588. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLinkId
  4589. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLinkId
  4590. impl<Q, K> equivalent::Equivalent<K> for aya::programs::links::ProgAttachLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4591. pub fn aya::programs::links::ProgAttachLinkId::equivalent(&self, key: &K) -> bool
  4592. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::From<T>
  4593. pub fn aya::programs::links::ProgAttachLinkId::into(self) -> U
  4594. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::Into<T>
  4595. pub type aya::programs::links::ProgAttachLinkId::Error = core::convert::Infallible
  4596. pub fn aya::programs::links::ProgAttachLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4597. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::TryFrom<T>
  4598. pub type aya::programs::links::ProgAttachLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4599. pub fn aya::programs::links::ProgAttachLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4600. impl<T> core::any::Any for aya::programs::links::ProgAttachLinkId where T: 'static + ?core::marker::Sized
  4601. pub fn aya::programs::links::ProgAttachLinkId::type_id(&self) -> core::any::TypeId
  4602. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4603. pub fn aya::programs::links::ProgAttachLinkId::borrow(&self) -> &T
  4604. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLinkId where T: ?core::marker::Sized
  4605. pub fn aya::programs::links::ProgAttachLinkId::borrow_mut(&mut self) -> &mut T
  4606. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLinkId
  4607. pub fn aya::programs::links::ProgAttachLinkId::from(t: T) -> T
  4608. pub trait aya::programs::links::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  4609. pub type aya::programs::links::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  4610. pub fn aya::programs::links::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4611. pub fn aya::programs::links::Link::id(&self) -> Self::Id
  4612. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  4613. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  4614. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4615. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  4616. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  4617. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  4618. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4619. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  4620. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  4621. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  4622. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4623. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  4624. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  4625. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  4626. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4627. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  4628. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  4629. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  4630. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4631. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  4632. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  4633. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  4634. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4635. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  4636. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  4637. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  4638. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4639. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  4640. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  4641. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  4642. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4643. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  4644. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  4645. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  4646. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4647. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  4648. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  4649. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  4650. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4651. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  4652. impl aya::programs::links::Link for aya::programs::iter::IterLink
  4653. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  4654. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4655. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  4656. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  4657. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  4658. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4659. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  4660. impl aya::programs::links::Link for aya::programs::links::FdLink
  4661. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  4662. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4663. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  4664. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  4665. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  4666. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4667. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  4668. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4669. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4670. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4671. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4672. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  4673. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  4674. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4675. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  4676. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  4677. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  4678. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4679. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  4680. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  4681. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  4682. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4683. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  4684. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  4685. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  4686. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4687. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  4688. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  4689. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  4690. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4691. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  4692. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  4693. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  4694. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4695. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  4696. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  4697. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  4698. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4699. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  4700. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  4701. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  4702. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4703. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  4704. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  4705. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  4706. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4707. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  4708. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  4709. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  4710. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4711. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  4712. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  4713. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  4714. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4715. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  4716. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  4717. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  4718. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4719. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  4720. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  4721. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  4722. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4723. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  4724. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  4725. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  4726. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4727. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  4728. pub mod aya::programs::lirc_mode2
  4729. pub struct aya::programs::lirc_mode2::LircLink
  4730. impl aya::programs::lirc_mode2::LircLink
  4731. pub fn aya::programs::lirc_mode2::LircLink::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4732. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  4733. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  4734. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4735. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  4736. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLink
  4737. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLink
  4738. pub fn aya::programs::lirc_mode2::LircLink::eq(&self, other: &Self) -> bool
  4739. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLink
  4740. pub fn aya::programs::lirc_mode2::LircLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4741. impl core::hash::Hash for aya::programs::lirc_mode2::LircLink
  4742. pub fn aya::programs::lirc_mode2::LircLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4743. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4744. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4745. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLink
  4746. impl core::marker::Send for aya::programs::lirc_mode2::LircLink
  4747. impl core::marker::Sync for aya::programs::lirc_mode2::LircLink
  4748. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLink
  4749. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLink
  4750. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLink
  4751. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4752. pub fn aya::programs::lirc_mode2::LircLink::equivalent(&self, key: &K) -> bool
  4753. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::From<T>
  4754. pub fn aya::programs::lirc_mode2::LircLink::into(self) -> U
  4755. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::Into<T>
  4756. pub type aya::programs::lirc_mode2::LircLink::Error = core::convert::Infallible
  4757. pub fn aya::programs::lirc_mode2::LircLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4758. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::TryFrom<T>
  4759. pub type aya::programs::lirc_mode2::LircLink::Error = <U as core::convert::TryFrom<T>>::Error
  4760. pub fn aya::programs::lirc_mode2::LircLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4761. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLink where T: 'static + ?core::marker::Sized
  4762. pub fn aya::programs::lirc_mode2::LircLink::type_id(&self) -> core::any::TypeId
  4763. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4764. pub fn aya::programs::lirc_mode2::LircLink::borrow(&self) -> &T
  4765. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLink where T: ?core::marker::Sized
  4766. pub fn aya::programs::lirc_mode2::LircLink::borrow_mut(&mut self) -> &mut T
  4767. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLink
  4768. pub fn aya::programs::lirc_mode2::LircLink::from(t: T) -> T
  4769. pub struct aya::programs::lirc_mode2::LircLinkId(_, _)
  4770. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLinkId
  4771. impl core::cmp::PartialEq for aya::programs::lirc_mode2::LircLinkId
  4772. pub fn aya::programs::lirc_mode2::LircLinkId::eq(&self, other: &aya::programs::lirc_mode2::LircLinkId) -> bool
  4773. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLinkId
  4774. pub fn aya::programs::lirc_mode2::LircLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4775. impl core::hash::Hash for aya::programs::lirc_mode2::LircLinkId
  4776. pub fn aya::programs::lirc_mode2::LircLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4777. impl core::marker::StructuralPartialEq for aya::programs::lirc_mode2::LircLinkId
  4778. impl equivalent::Equivalent<aya::programs::lirc_mode2::LircLink> for aya::programs::lirc_mode2::LircLinkId
  4779. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &aya::programs::lirc_mode2::LircLink) -> bool
  4780. impl core::marker::Freeze for aya::programs::lirc_mode2::LircLinkId
  4781. impl core::marker::Send for aya::programs::lirc_mode2::LircLinkId
  4782. impl core::marker::Sync for aya::programs::lirc_mode2::LircLinkId
  4783. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLinkId
  4784. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4785. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLinkId
  4786. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lirc_mode2::LircLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4787. pub fn aya::programs::lirc_mode2::LircLinkId::equivalent(&self, key: &K) -> bool
  4788. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::From<T>
  4789. pub fn aya::programs::lirc_mode2::LircLinkId::into(self) -> U
  4790. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::Into<T>
  4791. pub type aya::programs::lirc_mode2::LircLinkId::Error = core::convert::Infallible
  4792. pub fn aya::programs::lirc_mode2::LircLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4793. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::TryFrom<T>
  4794. pub type aya::programs::lirc_mode2::LircLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4795. pub fn aya::programs::lirc_mode2::LircLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4796. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLinkId where T: 'static + ?core::marker::Sized
  4797. pub fn aya::programs::lirc_mode2::LircLinkId::type_id(&self) -> core::any::TypeId
  4798. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4799. pub fn aya::programs::lirc_mode2::LircLinkId::borrow(&self) -> &T
  4800. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLinkId where T: ?core::marker::Sized
  4801. pub fn aya::programs::lirc_mode2::LircLinkId::borrow_mut(&mut self) -> &mut T
  4802. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLinkId
  4803. pub fn aya::programs::lirc_mode2::LircLinkId::from(t: T) -> T
  4804. pub struct aya::programs::lirc_mode2::LircMode2
  4805. impl aya::programs::lirc_mode2::LircMode2
  4806. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  4807. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  4808. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4809. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4810. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  4811. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  4812. impl aya::programs::lirc_mode2::LircMode2
  4813. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4814. impl aya::programs::lirc_mode2::LircMode2
  4815. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4816. impl aya::programs::lirc_mode2::LircMode2
  4817. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4818. impl aya::programs::lirc_mode2::LircMode2
  4819. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4820. impl aya::programs::lirc_mode2::LircMode2
  4821. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4822. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4823. impl aya::programs::lirc_mode2::LircMode2
  4824. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4825. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  4826. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4827. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  4828. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  4829. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  4830. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4831. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  4832. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  4833. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  4834. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  4835. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  4836. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  4837. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  4838. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  4839. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  4840. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  4841. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  4842. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  4843. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  4844. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  4845. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4846. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  4847. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  4848. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4849. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  4850. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  4851. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4852. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  4853. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  4854. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  4855. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  4856. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  4857. pub mod aya::programs::lsm
  4858. pub struct aya::programs::lsm::Lsm
  4859. impl aya::programs::lsm::Lsm
  4860. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  4861. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  4862. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  4863. impl aya::programs::lsm::Lsm
  4864. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4865. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  4866. impl aya::programs::lsm::Lsm
  4867. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4868. impl aya::programs::lsm::Lsm
  4869. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4870. impl aya::programs::lsm::Lsm
  4871. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  4872. impl aya::programs::lsm::Lsm
  4873. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4874. impl aya::programs::lsm::Lsm
  4875. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4876. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4877. impl aya::programs::lsm::Lsm
  4878. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4879. impl core::fmt::Debug for aya::programs::lsm::Lsm
  4880. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4881. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  4882. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  4883. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  4884. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4885. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4886. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  4887. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  4888. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  4889. impl core::marker::Freeze for aya::programs::lsm::Lsm
  4890. impl core::marker::Send for aya::programs::lsm::Lsm
  4891. impl core::marker::Sync for aya::programs::lsm::Lsm
  4892. impl core::marker::Unpin for aya::programs::lsm::Lsm
  4893. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  4894. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  4895. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  4896. pub fn aya::programs::lsm::Lsm::into(self) -> U
  4897. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  4898. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  4899. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4900. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  4901. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  4902. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4903. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  4904. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  4905. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  4906. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  4907. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  4908. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  4909. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  4910. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  4911. pub struct aya::programs::lsm::LsmLink(_)
  4912. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  4913. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  4914. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4915. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  4916. impl core::cmp::Eq for aya::programs::lsm::LsmLink
  4917. impl core::cmp::PartialEq for aya::programs::lsm::LsmLink
  4918. pub fn aya::programs::lsm::LsmLink::eq(&self, other: &Self) -> bool
  4919. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  4920. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  4921. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  4922. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  4923. impl core::fmt::Debug for aya::programs::lsm::LsmLink
  4924. pub fn aya::programs::lsm::LsmLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4925. impl core::hash::Hash for aya::programs::lsm::LsmLink
  4926. pub fn aya::programs::lsm::LsmLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  4927. impl core::ops::drop::Drop for aya::programs::lsm::LsmLink
  4928. pub fn aya::programs::lsm::LsmLink::drop(&mut self)
  4929. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  4930. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  4931. impl core::marker::Freeze for aya::programs::lsm::LsmLink
  4932. impl core::marker::Send for aya::programs::lsm::LsmLink
  4933. impl core::marker::Sync for aya::programs::lsm::LsmLink
  4934. impl core::marker::Unpin for aya::programs::lsm::LsmLink
  4935. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLink
  4936. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLink
  4937. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4938. pub fn aya::programs::lsm::LsmLink::equivalent(&self, key: &K) -> bool
  4939. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLink where U: core::convert::From<T>
  4940. pub fn aya::programs::lsm::LsmLink::into(self) -> U
  4941. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLink where U: core::convert::Into<T>
  4942. pub type aya::programs::lsm::LsmLink::Error = core::convert::Infallible
  4943. pub fn aya::programs::lsm::LsmLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4944. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLink where U: core::convert::TryFrom<T>
  4945. pub type aya::programs::lsm::LsmLink::Error = <U as core::convert::TryFrom<T>>::Error
  4946. pub fn aya::programs::lsm::LsmLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4947. impl<T> core::any::Any for aya::programs::lsm::LsmLink where T: 'static + ?core::marker::Sized
  4948. pub fn aya::programs::lsm::LsmLink::type_id(&self) -> core::any::TypeId
  4949. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  4950. pub fn aya::programs::lsm::LsmLink::borrow(&self) -> &T
  4951. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLink where T: ?core::marker::Sized
  4952. pub fn aya::programs::lsm::LsmLink::borrow_mut(&mut self) -> &mut T
  4953. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLink
  4954. pub fn aya::programs::lsm::LsmLink::from(t: T) -> T
  4955. pub struct aya::programs::lsm::LsmLinkId(_)
  4956. impl core::cmp::Eq for aya::programs::lsm::LsmLinkId
  4957. impl core::cmp::PartialEq for aya::programs::lsm::LsmLinkId
  4958. pub fn aya::programs::lsm::LsmLinkId::eq(&self, other: &aya::programs::lsm::LsmLinkId) -> bool
  4959. impl core::fmt::Debug for aya::programs::lsm::LsmLinkId
  4960. pub fn aya::programs::lsm::LsmLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4961. impl core::hash::Hash for aya::programs::lsm::LsmLinkId
  4962. pub fn aya::programs::lsm::LsmLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4963. impl core::marker::StructuralPartialEq for aya::programs::lsm::LsmLinkId
  4964. impl equivalent::Equivalent<aya::programs::lsm::LsmLink> for aya::programs::lsm::LsmLinkId
  4965. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &aya::programs::lsm::LsmLink) -> bool
  4966. impl core::marker::Freeze for aya::programs::lsm::LsmLinkId
  4967. impl core::marker::Send for aya::programs::lsm::LsmLinkId
  4968. impl core::marker::Sync for aya::programs::lsm::LsmLinkId
  4969. impl core::marker::Unpin for aya::programs::lsm::LsmLinkId
  4970. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLinkId
  4971. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLinkId
  4972. impl<Q, K> equivalent::Equivalent<K> for aya::programs::lsm::LsmLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  4973. pub fn aya::programs::lsm::LsmLinkId::equivalent(&self, key: &K) -> bool
  4974. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLinkId where U: core::convert::From<T>
  4975. pub fn aya::programs::lsm::LsmLinkId::into(self) -> U
  4976. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLinkId where U: core::convert::Into<T>
  4977. pub type aya::programs::lsm::LsmLinkId::Error = core::convert::Infallible
  4978. pub fn aya::programs::lsm::LsmLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4979. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLinkId where U: core::convert::TryFrom<T>
  4980. pub type aya::programs::lsm::LsmLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4981. pub fn aya::programs::lsm::LsmLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4982. impl<T> core::any::Any for aya::programs::lsm::LsmLinkId where T: 'static + ?core::marker::Sized
  4983. pub fn aya::programs::lsm::LsmLinkId::type_id(&self) -> core::any::TypeId
  4984. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  4985. pub fn aya::programs::lsm::LsmLinkId::borrow(&self) -> &T
  4986. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLinkId where T: ?core::marker::Sized
  4987. pub fn aya::programs::lsm::LsmLinkId::borrow_mut(&mut self) -> &mut T
  4988. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLinkId
  4989. pub fn aya::programs::lsm::LsmLinkId::from(t: T) -> T
  4990. pub mod aya::programs::perf_attach
  4991. pub struct aya::programs::perf_attach::PerfLink
  4992. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  4993. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  4994. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4995. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  4996. impl core::cmp::Eq for aya::programs::perf_attach::PerfLink
  4997. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLink
  4998. pub fn aya::programs::perf_attach::PerfLink::eq(&self, other: &Self) -> bool
  4999. impl core::fmt::Debug for aya::programs::perf_attach::PerfLink
  5000. pub fn aya::programs::perf_attach::PerfLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5001. impl core::hash::Hash for aya::programs::perf_attach::PerfLink
  5002. pub fn aya::programs::perf_attach::PerfLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5003. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5004. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5005. impl core::marker::Freeze for aya::programs::perf_attach::PerfLink
  5006. impl core::marker::Send for aya::programs::perf_attach::PerfLink
  5007. impl core::marker::Sync for aya::programs::perf_attach::PerfLink
  5008. impl core::marker::Unpin for aya::programs::perf_attach::PerfLink
  5009. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLink
  5010. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLink
  5011. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5012. pub fn aya::programs::perf_attach::PerfLink::equivalent(&self, key: &K) -> bool
  5013. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLink where U: core::convert::From<T>
  5014. pub fn aya::programs::perf_attach::PerfLink::into(self) -> U
  5015. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLink where U: core::convert::Into<T>
  5016. pub type aya::programs::perf_attach::PerfLink::Error = core::convert::Infallible
  5017. pub fn aya::programs::perf_attach::PerfLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5018. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLink where U: core::convert::TryFrom<T>
  5019. pub type aya::programs::perf_attach::PerfLink::Error = <U as core::convert::TryFrom<T>>::Error
  5020. pub fn aya::programs::perf_attach::PerfLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5021. impl<T> core::any::Any for aya::programs::perf_attach::PerfLink where T: 'static + ?core::marker::Sized
  5022. pub fn aya::programs::perf_attach::PerfLink::type_id(&self) -> core::any::TypeId
  5023. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5024. pub fn aya::programs::perf_attach::PerfLink::borrow(&self) -> &T
  5025. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLink where T: ?core::marker::Sized
  5026. pub fn aya::programs::perf_attach::PerfLink::borrow_mut(&mut self) -> &mut T
  5027. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLink
  5028. pub fn aya::programs::perf_attach::PerfLink::from(t: T) -> T
  5029. pub struct aya::programs::perf_attach::PerfLinkId(_)
  5030. impl core::cmp::Eq for aya::programs::perf_attach::PerfLinkId
  5031. impl core::cmp::PartialEq for aya::programs::perf_attach::PerfLinkId
  5032. pub fn aya::programs::perf_attach::PerfLinkId::eq(&self, other: &aya::programs::perf_attach::PerfLinkId) -> bool
  5033. impl core::fmt::Debug for aya::programs::perf_attach::PerfLinkId
  5034. pub fn aya::programs::perf_attach::PerfLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5035. impl core::hash::Hash for aya::programs::perf_attach::PerfLinkId
  5036. pub fn aya::programs::perf_attach::PerfLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5037. impl core::marker::StructuralPartialEq for aya::programs::perf_attach::PerfLinkId
  5038. impl equivalent::Equivalent<aya::programs::perf_attach::PerfLink> for aya::programs::perf_attach::PerfLinkId
  5039. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &aya::programs::perf_attach::PerfLink) -> bool
  5040. impl core::marker::Freeze for aya::programs::perf_attach::PerfLinkId
  5041. impl core::marker::Send for aya::programs::perf_attach::PerfLinkId
  5042. impl core::marker::Sync for aya::programs::perf_attach::PerfLinkId
  5043. impl core::marker::Unpin for aya::programs::perf_attach::PerfLinkId
  5044. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLinkId
  5045. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLinkId
  5046. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_attach::PerfLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5047. pub fn aya::programs::perf_attach::PerfLinkId::equivalent(&self, key: &K) -> bool
  5048. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::From<T>
  5049. pub fn aya::programs::perf_attach::PerfLinkId::into(self) -> U
  5050. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::Into<T>
  5051. pub type aya::programs::perf_attach::PerfLinkId::Error = core::convert::Infallible
  5052. pub fn aya::programs::perf_attach::PerfLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5053. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::TryFrom<T>
  5054. pub type aya::programs::perf_attach::PerfLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5055. pub fn aya::programs::perf_attach::PerfLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5056. impl<T> core::any::Any for aya::programs::perf_attach::PerfLinkId where T: 'static + ?core::marker::Sized
  5057. pub fn aya::programs::perf_attach::PerfLinkId::type_id(&self) -> core::any::TypeId
  5058. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5059. pub fn aya::programs::perf_attach::PerfLinkId::borrow(&self) -> &T
  5060. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLinkId where T: ?core::marker::Sized
  5061. pub fn aya::programs::perf_attach::PerfLinkId::borrow_mut(&mut self) -> &mut T
  5062. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLinkId
  5063. pub fn aya::programs::perf_attach::PerfLinkId::from(t: T) -> T
  5064. pub mod aya::programs::perf_event
  5065. pub use aya::programs::perf_event::perf_hw_cache_id
  5066. pub use aya::programs::perf_event::perf_hw_cache_op_id
  5067. pub use aya::programs::perf_event::perf_hw_cache_op_result_id
  5068. pub use aya::programs::perf_event::perf_hw_id
  5069. pub use aya::programs::perf_event::perf_sw_ids
  5070. pub enum aya::programs::perf_event::PerfEventScope
  5071. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu
  5072. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu::cpu: u32
  5073. pub aya::programs::perf_event::PerfEventScope::CallingProcessAnyCpu
  5074. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu
  5075. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu::cpu: u32
  5076. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu
  5077. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu::pid: u32
  5078. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu
  5079. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::cpu: u32
  5080. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::pid: u32
  5081. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  5082. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  5083. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  5084. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5085. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  5086. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  5087. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  5088. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  5089. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  5090. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  5091. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  5092. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  5093. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  5094. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  5095. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5096. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  5097. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  5098. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5099. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5100. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  5101. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  5102. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  5103. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  5104. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  5105. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5106. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  5107. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  5108. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  5109. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5110. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  5111. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  5112. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  5113. #[repr(u32)] pub enum aya::programs::perf_event::PerfTypeId
  5114. pub aya::programs::perf_event::PerfTypeId::Breakpoint = 5
  5115. pub aya::programs::perf_event::PerfTypeId::Hardware = 0
  5116. pub aya::programs::perf_event::PerfTypeId::HwCache = 3
  5117. pub aya::programs::perf_event::PerfTypeId::Raw = 4
  5118. pub aya::programs::perf_event::PerfTypeId::Software = 1
  5119. pub aya::programs::perf_event::PerfTypeId::TracePoint = 2
  5120. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  5121. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  5122. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  5123. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5124. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  5125. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  5126. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  5127. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  5128. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  5129. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  5130. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  5131. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  5132. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  5133. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  5134. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5135. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  5136. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  5137. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5138. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5139. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  5140. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  5141. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  5142. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  5143. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  5144. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5145. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  5146. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  5147. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  5148. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5149. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  5150. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  5151. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  5152. pub enum aya::programs::perf_event::SamplePolicy
  5153. pub aya::programs::perf_event::SamplePolicy::Frequency(u64)
  5154. pub aya::programs::perf_event::SamplePolicy::Period(u64)
  5155. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  5156. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  5157. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  5158. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5159. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  5160. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  5161. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  5162. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  5163. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  5164. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  5165. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  5166. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  5167. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  5168. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  5169. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5170. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  5171. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  5172. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5173. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5174. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  5175. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  5176. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  5177. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  5178. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  5179. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5180. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  5181. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  5182. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  5183. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5184. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  5185. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  5186. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  5187. pub struct aya::programs::perf_event::PerfEvent
  5188. impl aya::programs::perf_event::PerfEvent
  5189. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  5190. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  5191. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5192. impl aya::programs::perf_event::PerfEvent
  5193. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5194. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  5195. impl aya::programs::perf_event::PerfEvent
  5196. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5197. impl aya::programs::perf_event::PerfEvent
  5198. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5199. impl aya::programs::perf_event::PerfEvent
  5200. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5201. impl aya::programs::perf_event::PerfEvent
  5202. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5203. impl aya::programs::perf_event::PerfEvent
  5204. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5205. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5206. impl aya::programs::perf_event::PerfEvent
  5207. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5208. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  5209. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5210. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  5211. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  5212. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  5213. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5214. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5215. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  5216. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5217. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5218. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  5219. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  5220. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  5221. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  5222. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  5223. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  5224. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  5225. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  5226. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  5227. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  5228. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5229. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  5230. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  5231. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5232. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  5233. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  5234. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5235. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  5236. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  5237. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  5238. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  5239. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  5240. pub struct aya::programs::perf_event::PerfEventLink(_)
  5241. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  5242. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  5243. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5244. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  5245. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLink
  5246. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLink
  5247. pub fn aya::programs::perf_event::PerfEventLink::eq(&self, other: &Self) -> bool
  5248. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  5249. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  5250. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  5251. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  5252. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5253. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  5254. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLink
  5255. pub fn aya::programs::perf_event::PerfEventLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5256. impl core::hash::Hash for aya::programs::perf_event::PerfEventLink
  5257. pub fn aya::programs::perf_event::PerfEventLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5258. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEventLink
  5259. pub fn aya::programs::perf_event::PerfEventLink::drop(&mut self)
  5260. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5261. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5262. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLink
  5263. impl core::marker::Send for aya::programs::perf_event::PerfEventLink
  5264. impl core::marker::Sync for aya::programs::perf_event::PerfEventLink
  5265. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLink
  5266. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLink
  5267. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLink
  5268. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5269. pub fn aya::programs::perf_event::PerfEventLink::equivalent(&self, key: &K) -> bool
  5270. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::From<T>
  5271. pub fn aya::programs::perf_event::PerfEventLink::into(self) -> U
  5272. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::Into<T>
  5273. pub type aya::programs::perf_event::PerfEventLink::Error = core::convert::Infallible
  5274. pub fn aya::programs::perf_event::PerfEventLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5275. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::TryFrom<T>
  5276. pub type aya::programs::perf_event::PerfEventLink::Error = <U as core::convert::TryFrom<T>>::Error
  5277. pub fn aya::programs::perf_event::PerfEventLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5278. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLink where T: 'static + ?core::marker::Sized
  5279. pub fn aya::programs::perf_event::PerfEventLink::type_id(&self) -> core::any::TypeId
  5280. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5281. pub fn aya::programs::perf_event::PerfEventLink::borrow(&self) -> &T
  5282. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLink where T: ?core::marker::Sized
  5283. pub fn aya::programs::perf_event::PerfEventLink::borrow_mut(&mut self) -> &mut T
  5284. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLink
  5285. pub fn aya::programs::perf_event::PerfEventLink::from(t: T) -> T
  5286. pub struct aya::programs::perf_event::PerfEventLinkId(_)
  5287. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLinkId
  5288. impl core::cmp::PartialEq for aya::programs::perf_event::PerfEventLinkId
  5289. pub fn aya::programs::perf_event::PerfEventLinkId::eq(&self, other: &aya::programs::perf_event::PerfEventLinkId) -> bool
  5290. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLinkId
  5291. pub fn aya::programs::perf_event::PerfEventLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5292. impl core::hash::Hash for aya::programs::perf_event::PerfEventLinkId
  5293. pub fn aya::programs::perf_event::PerfEventLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5294. impl core::marker::StructuralPartialEq for aya::programs::perf_event::PerfEventLinkId
  5295. impl equivalent::Equivalent<aya::programs::perf_event::PerfEventLink> for aya::programs::perf_event::PerfEventLinkId
  5296. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &aya::programs::perf_event::PerfEventLink) -> bool
  5297. impl core::marker::Freeze for aya::programs::perf_event::PerfEventLinkId
  5298. impl core::marker::Send for aya::programs::perf_event::PerfEventLinkId
  5299. impl core::marker::Sync for aya::programs::perf_event::PerfEventLinkId
  5300. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLinkId
  5301. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5302. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLinkId
  5303. impl<Q, K> equivalent::Equivalent<K> for aya::programs::perf_event::PerfEventLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5304. pub fn aya::programs::perf_event::PerfEventLinkId::equivalent(&self, key: &K) -> bool
  5305. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::From<T>
  5306. pub fn aya::programs::perf_event::PerfEventLinkId::into(self) -> U
  5307. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::Into<T>
  5308. pub type aya::programs::perf_event::PerfEventLinkId::Error = core::convert::Infallible
  5309. pub fn aya::programs::perf_event::PerfEventLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5310. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::TryFrom<T>
  5311. pub type aya::programs::perf_event::PerfEventLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5312. pub fn aya::programs::perf_event::PerfEventLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5313. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLinkId where T: 'static + ?core::marker::Sized
  5314. pub fn aya::programs::perf_event::PerfEventLinkId::type_id(&self) -> core::any::TypeId
  5315. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5316. pub fn aya::programs::perf_event::PerfEventLinkId::borrow(&self) -> &T
  5317. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLinkId where T: ?core::marker::Sized
  5318. pub fn aya::programs::perf_event::PerfEventLinkId::borrow_mut(&mut self) -> &mut T
  5319. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLinkId
  5320. pub fn aya::programs::perf_event::PerfEventLinkId::from(t: T) -> T
  5321. pub mod aya::programs::raw_trace_point
  5322. pub struct aya::programs::raw_trace_point::RawTracePoint
  5323. impl aya::programs::raw_trace_point::RawTracePoint
  5324. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  5325. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  5326. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5327. impl aya::programs::raw_trace_point::RawTracePoint
  5328. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5329. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  5330. impl aya::programs::raw_trace_point::RawTracePoint
  5331. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5332. impl aya::programs::raw_trace_point::RawTracePoint
  5333. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5334. impl aya::programs::raw_trace_point::RawTracePoint
  5335. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5336. impl aya::programs::raw_trace_point::RawTracePoint
  5337. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5338. impl aya::programs::raw_trace_point::RawTracePoint
  5339. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5340. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5341. impl aya::programs::raw_trace_point::RawTracePoint
  5342. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5343. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  5344. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5345. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  5346. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  5347. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  5348. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5349. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5350. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  5351. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  5352. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  5353. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  5354. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  5355. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  5356. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  5357. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5358. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  5359. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  5360. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  5361. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  5362. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  5363. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5364. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  5365. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  5366. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5367. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  5368. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  5369. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5370. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  5371. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  5372. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  5373. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  5374. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  5375. pub struct aya::programs::raw_trace_point::RawTracePointLink(_)
  5376. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  5377. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  5378. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5379. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  5380. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLink
  5381. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLink
  5382. pub fn aya::programs::raw_trace_point::RawTracePointLink::eq(&self, other: &Self) -> bool
  5383. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::raw_trace_point::RawTracePointLink
  5384. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::raw_trace_point::RawTracePointLink
  5385. impl core::convert::From<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::links::FdLink
  5386. pub fn aya::programs::links::FdLink::from(w: aya::programs::raw_trace_point::RawTracePointLink) -> aya::programs::links::FdLink
  5387. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLink
  5388. pub fn aya::programs::raw_trace_point::RawTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5389. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLink
  5390. pub fn aya::programs::raw_trace_point::RawTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5391. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePointLink
  5392. pub fn aya::programs::raw_trace_point::RawTracePointLink::drop(&mut self)
  5393. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5394. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5395. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLink
  5396. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLink
  5397. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLink
  5398. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLink
  5399. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5400. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLink
  5401. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5402. pub fn aya::programs::raw_trace_point::RawTracePointLink::equivalent(&self, key: &K) -> bool
  5403. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::From<T>
  5404. pub fn aya::programs::raw_trace_point::RawTracePointLink::into(self) -> U
  5405. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::Into<T>
  5406. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = core::convert::Infallible
  5407. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5408. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLink where U: core::convert::TryFrom<T>
  5409. pub type aya::programs::raw_trace_point::RawTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  5410. pub fn aya::programs::raw_trace_point::RawTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5411. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLink where T: 'static + ?core::marker::Sized
  5412. pub fn aya::programs::raw_trace_point::RawTracePointLink::type_id(&self) -> core::any::TypeId
  5413. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5414. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow(&self) -> &T
  5415. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLink where T: ?core::marker::Sized
  5416. pub fn aya::programs::raw_trace_point::RawTracePointLink::borrow_mut(&mut self) -> &mut T
  5417. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLink
  5418. pub fn aya::programs::raw_trace_point::RawTracePointLink::from(t: T) -> T
  5419. pub struct aya::programs::raw_trace_point::RawTracePointLinkId(_)
  5420. impl core::cmp::Eq for aya::programs::raw_trace_point::RawTracePointLinkId
  5421. impl core::cmp::PartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5422. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::eq(&self, other: &aya::programs::raw_trace_point::RawTracePointLinkId) -> bool
  5423. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePointLinkId
  5424. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5425. impl core::hash::Hash for aya::programs::raw_trace_point::RawTracePointLinkId
  5426. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5427. impl core::marker::StructuralPartialEq for aya::programs::raw_trace_point::RawTracePointLinkId
  5428. impl equivalent::Equivalent<aya::programs::raw_trace_point::RawTracePointLink> for aya::programs::raw_trace_point::RawTracePointLinkId
  5429. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &aya::programs::raw_trace_point::RawTracePointLink) -> bool
  5430. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePointLinkId
  5431. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePointLinkId
  5432. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePointLinkId
  5433. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePointLinkId
  5434. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5435. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePointLinkId
  5436. impl<Q, K> equivalent::Equivalent<K> for aya::programs::raw_trace_point::RawTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5437. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::equivalent(&self, key: &K) -> bool
  5438. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::From<T>
  5439. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::into(self) -> U
  5440. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::Into<T>
  5441. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = core::convert::Infallible
  5442. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5443. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePointLinkId where U: core::convert::TryFrom<T>
  5444. pub type aya::programs::raw_trace_point::RawTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5445. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5446. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePointLinkId where T: 'static + ?core::marker::Sized
  5447. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::type_id(&self) -> core::any::TypeId
  5448. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5449. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow(&self) -> &T
  5450. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePointLinkId where T: ?core::marker::Sized
  5451. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::borrow_mut(&mut self) -> &mut T
  5452. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePointLinkId
  5453. pub fn aya::programs::raw_trace_point::RawTracePointLinkId::from(t: T) -> T
  5454. pub mod aya::programs::sk_lookup
  5455. pub struct aya::programs::sk_lookup::SkLookup
  5456. impl aya::programs::sk_lookup::SkLookup
  5457. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  5458. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  5459. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5460. impl aya::programs::sk_lookup::SkLookup
  5461. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5462. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  5463. impl aya::programs::sk_lookup::SkLookup
  5464. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5465. impl aya::programs::sk_lookup::SkLookup
  5466. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5467. impl aya::programs::sk_lookup::SkLookup
  5468. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5469. impl aya::programs::sk_lookup::SkLookup
  5470. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5471. impl aya::programs::sk_lookup::SkLookup
  5472. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5473. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5474. impl aya::programs::sk_lookup::SkLookup
  5475. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5476. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  5477. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5478. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  5479. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  5480. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  5481. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5482. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5483. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  5484. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  5485. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  5486. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  5487. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  5488. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  5489. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  5490. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  5491. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  5492. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  5493. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  5494. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  5495. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  5496. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5497. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  5498. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  5499. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5500. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  5501. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  5502. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5503. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  5504. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  5505. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  5506. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  5507. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  5508. pub struct aya::programs::sk_lookup::SkLookupLink(_)
  5509. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  5510. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  5511. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5512. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  5513. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLink
  5514. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLink
  5515. pub fn aya::programs::sk_lookup::SkLookupLink::eq(&self, other: &Self) -> bool
  5516. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::sk_lookup::SkLookupLink
  5517. pub fn aya::programs::sk_lookup::SkLookupLink::from(b: aya::programs::links::FdLink) -> aya::programs::sk_lookup::SkLookupLink
  5518. impl core::convert::From<aya::programs::sk_lookup::SkLookupLink> for aya::programs::links::FdLink
  5519. pub fn aya::programs::links::FdLink::from(w: aya::programs::sk_lookup::SkLookupLink) -> aya::programs::links::FdLink
  5520. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLink
  5521. pub fn aya::programs::sk_lookup::SkLookupLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5522. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLink
  5523. pub fn aya::programs::sk_lookup::SkLookupLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5524. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookupLink
  5525. pub fn aya::programs::sk_lookup::SkLookupLink::drop(&mut self)
  5526. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5527. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5528. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLink
  5529. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLink
  5530. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLink
  5531. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLink
  5532. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5533. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLink
  5534. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5535. pub fn aya::programs::sk_lookup::SkLookupLink::equivalent(&self, key: &K) -> bool
  5536. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::From<T>
  5537. pub fn aya::programs::sk_lookup::SkLookupLink::into(self) -> U
  5538. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::Into<T>
  5539. pub type aya::programs::sk_lookup::SkLookupLink::Error = core::convert::Infallible
  5540. pub fn aya::programs::sk_lookup::SkLookupLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5541. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLink where U: core::convert::TryFrom<T>
  5542. pub type aya::programs::sk_lookup::SkLookupLink::Error = <U as core::convert::TryFrom<T>>::Error
  5543. pub fn aya::programs::sk_lookup::SkLookupLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5544. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLink where T: 'static + ?core::marker::Sized
  5545. pub fn aya::programs::sk_lookup::SkLookupLink::type_id(&self) -> core::any::TypeId
  5546. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5547. pub fn aya::programs::sk_lookup::SkLookupLink::borrow(&self) -> &T
  5548. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLink where T: ?core::marker::Sized
  5549. pub fn aya::programs::sk_lookup::SkLookupLink::borrow_mut(&mut self) -> &mut T
  5550. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLink
  5551. pub fn aya::programs::sk_lookup::SkLookupLink::from(t: T) -> T
  5552. pub struct aya::programs::sk_lookup::SkLookupLinkId(_)
  5553. impl core::cmp::Eq for aya::programs::sk_lookup::SkLookupLinkId
  5554. impl core::cmp::PartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5555. pub fn aya::programs::sk_lookup::SkLookupLinkId::eq(&self, other: &aya::programs::sk_lookup::SkLookupLinkId) -> bool
  5556. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookupLinkId
  5557. pub fn aya::programs::sk_lookup::SkLookupLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5558. impl core::hash::Hash for aya::programs::sk_lookup::SkLookupLinkId
  5559. pub fn aya::programs::sk_lookup::SkLookupLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5560. impl core::marker::StructuralPartialEq for aya::programs::sk_lookup::SkLookupLinkId
  5561. impl equivalent::Equivalent<aya::programs::sk_lookup::SkLookupLink> for aya::programs::sk_lookup::SkLookupLinkId
  5562. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &aya::programs::sk_lookup::SkLookupLink) -> bool
  5563. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookupLinkId
  5564. impl core::marker::Send for aya::programs::sk_lookup::SkLookupLinkId
  5565. impl core::marker::Sync for aya::programs::sk_lookup::SkLookupLinkId
  5566. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookupLinkId
  5567. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5568. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookupLinkId
  5569. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_lookup::SkLookupLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5570. pub fn aya::programs::sk_lookup::SkLookupLinkId::equivalent(&self, key: &K) -> bool
  5571. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::From<T>
  5572. pub fn aya::programs::sk_lookup::SkLookupLinkId::into(self) -> U
  5573. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::Into<T>
  5574. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = core::convert::Infallible
  5575. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5576. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookupLinkId where U: core::convert::TryFrom<T>
  5577. pub type aya::programs::sk_lookup::SkLookupLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5578. pub fn aya::programs::sk_lookup::SkLookupLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5579. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookupLinkId where T: 'static + ?core::marker::Sized
  5580. pub fn aya::programs::sk_lookup::SkLookupLinkId::type_id(&self) -> core::any::TypeId
  5581. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5582. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow(&self) -> &T
  5583. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookupLinkId where T: ?core::marker::Sized
  5584. pub fn aya::programs::sk_lookup::SkLookupLinkId::borrow_mut(&mut self) -> &mut T
  5585. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookupLinkId
  5586. pub fn aya::programs::sk_lookup::SkLookupLinkId::from(t: T) -> T
  5587. pub mod aya::programs::sk_msg
  5588. pub struct aya::programs::sk_msg::SkMsg
  5589. impl aya::programs::sk_msg::SkMsg
  5590. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  5591. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  5592. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5593. impl aya::programs::sk_msg::SkMsg
  5594. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5595. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  5596. impl aya::programs::sk_msg::SkMsg
  5597. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5598. impl aya::programs::sk_msg::SkMsg
  5599. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5600. impl aya::programs::sk_msg::SkMsg
  5601. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5602. impl aya::programs::sk_msg::SkMsg
  5603. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5604. impl aya::programs::sk_msg::SkMsg
  5605. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5606. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5607. impl aya::programs::sk_msg::SkMsg
  5608. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5609. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  5610. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5611. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  5612. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  5613. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  5614. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5615. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5616. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  5617. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  5618. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  5619. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  5620. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  5621. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  5622. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  5623. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  5624. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  5625. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  5626. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  5627. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  5628. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  5629. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5630. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  5631. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  5632. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5633. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  5634. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  5635. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5636. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  5637. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  5638. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  5639. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  5640. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  5641. pub struct aya::programs::sk_msg::SkMsgLink(_)
  5642. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  5643. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  5644. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5645. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  5646. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLink
  5647. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLink
  5648. pub fn aya::programs::sk_msg::SkMsgLink::eq(&self, other: &Self) -> bool
  5649. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_msg::SkMsgLink
  5650. pub fn aya::programs::sk_msg::SkMsgLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_msg::SkMsgLink
  5651. impl core::convert::From<aya::programs::sk_msg::SkMsgLink> for aya::programs::links::ProgAttachLink
  5652. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_msg::SkMsgLink) -> aya::programs::links::ProgAttachLink
  5653. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLink
  5654. pub fn aya::programs::sk_msg::SkMsgLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5655. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLink
  5656. pub fn aya::programs::sk_msg::SkMsgLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5657. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsgLink
  5658. pub fn aya::programs::sk_msg::SkMsgLink::drop(&mut self)
  5659. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5660. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5661. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLink
  5662. impl core::marker::Send for aya::programs::sk_msg::SkMsgLink
  5663. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLink
  5664. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLink
  5665. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLink
  5666. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLink
  5667. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5668. pub fn aya::programs::sk_msg::SkMsgLink::equivalent(&self, key: &K) -> bool
  5669. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::From<T>
  5670. pub fn aya::programs::sk_msg::SkMsgLink::into(self) -> U
  5671. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::Into<T>
  5672. pub type aya::programs::sk_msg::SkMsgLink::Error = core::convert::Infallible
  5673. pub fn aya::programs::sk_msg::SkMsgLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5674. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLink where U: core::convert::TryFrom<T>
  5675. pub type aya::programs::sk_msg::SkMsgLink::Error = <U as core::convert::TryFrom<T>>::Error
  5676. pub fn aya::programs::sk_msg::SkMsgLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5677. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLink where T: 'static + ?core::marker::Sized
  5678. pub fn aya::programs::sk_msg::SkMsgLink::type_id(&self) -> core::any::TypeId
  5679. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5680. pub fn aya::programs::sk_msg::SkMsgLink::borrow(&self) -> &T
  5681. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLink where T: ?core::marker::Sized
  5682. pub fn aya::programs::sk_msg::SkMsgLink::borrow_mut(&mut self) -> &mut T
  5683. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLink
  5684. pub fn aya::programs::sk_msg::SkMsgLink::from(t: T) -> T
  5685. pub struct aya::programs::sk_msg::SkMsgLinkId(_)
  5686. impl core::cmp::Eq for aya::programs::sk_msg::SkMsgLinkId
  5687. impl core::cmp::PartialEq for aya::programs::sk_msg::SkMsgLinkId
  5688. pub fn aya::programs::sk_msg::SkMsgLinkId::eq(&self, other: &aya::programs::sk_msg::SkMsgLinkId) -> bool
  5689. impl core::fmt::Debug for aya::programs::sk_msg::SkMsgLinkId
  5690. pub fn aya::programs::sk_msg::SkMsgLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5691. impl core::hash::Hash for aya::programs::sk_msg::SkMsgLinkId
  5692. pub fn aya::programs::sk_msg::SkMsgLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5693. impl core::marker::StructuralPartialEq for aya::programs::sk_msg::SkMsgLinkId
  5694. impl equivalent::Equivalent<aya::programs::sk_msg::SkMsgLink> for aya::programs::sk_msg::SkMsgLinkId
  5695. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &aya::programs::sk_msg::SkMsgLink) -> bool
  5696. impl core::marker::Freeze for aya::programs::sk_msg::SkMsgLinkId
  5697. impl core::marker::Send for aya::programs::sk_msg::SkMsgLinkId
  5698. impl core::marker::Sync for aya::programs::sk_msg::SkMsgLinkId
  5699. impl core::marker::Unpin for aya::programs::sk_msg::SkMsgLinkId
  5700. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5701. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsgLinkId
  5702. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_msg::SkMsgLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5703. pub fn aya::programs::sk_msg::SkMsgLinkId::equivalent(&self, key: &K) -> bool
  5704. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::From<T>
  5705. pub fn aya::programs::sk_msg::SkMsgLinkId::into(self) -> U
  5706. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::Into<T>
  5707. pub type aya::programs::sk_msg::SkMsgLinkId::Error = core::convert::Infallible
  5708. pub fn aya::programs::sk_msg::SkMsgLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5709. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsgLinkId where U: core::convert::TryFrom<T>
  5710. pub type aya::programs::sk_msg::SkMsgLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5711. pub fn aya::programs::sk_msg::SkMsgLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5712. impl<T> core::any::Any for aya::programs::sk_msg::SkMsgLinkId where T: 'static + ?core::marker::Sized
  5713. pub fn aya::programs::sk_msg::SkMsgLinkId::type_id(&self) -> core::any::TypeId
  5714. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5715. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow(&self) -> &T
  5716. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsgLinkId where T: ?core::marker::Sized
  5717. pub fn aya::programs::sk_msg::SkMsgLinkId::borrow_mut(&mut self) -> &mut T
  5718. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsgLinkId
  5719. pub fn aya::programs::sk_msg::SkMsgLinkId::from(t: T) -> T
  5720. pub mod aya::programs::sk_skb
  5721. pub enum aya::programs::sk_skb::SkSkbKind
  5722. pub aya::programs::sk_skb::SkSkbKind::StreamParser
  5723. pub aya::programs::sk_skb::SkSkbKind::StreamVerdict
  5724. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  5725. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  5726. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  5727. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5728. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  5729. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  5730. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  5731. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  5732. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  5733. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  5734. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  5735. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  5736. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  5737. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  5738. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  5739. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5740. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  5741. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  5742. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5743. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5744. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  5745. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  5746. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  5747. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  5748. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  5749. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5750. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  5751. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  5752. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  5753. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  5754. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  5755. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  5756. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  5757. pub struct aya::programs::sk_skb::SkSkb
  5758. impl aya::programs::sk_skb::SkSkb
  5759. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  5760. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  5761. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5762. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5763. impl aya::programs::sk_skb::SkSkb
  5764. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5765. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  5766. impl aya::programs::sk_skb::SkSkb
  5767. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5768. impl aya::programs::sk_skb::SkSkb
  5769. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  5770. impl aya::programs::sk_skb::SkSkb
  5771. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5772. impl aya::programs::sk_skb::SkSkb
  5773. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5774. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5775. impl aya::programs::sk_skb::SkSkb
  5776. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5777. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  5778. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5779. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  5780. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  5781. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  5782. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5783. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5784. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  5785. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  5786. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  5787. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  5788. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  5789. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  5790. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  5791. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  5792. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  5793. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  5794. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  5795. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  5796. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  5797. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5798. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  5799. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  5800. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5801. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  5802. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  5803. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5804. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  5805. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  5806. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  5807. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  5808. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  5809. pub struct aya::programs::sk_skb::SkSkbLink(_)
  5810. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  5811. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  5812. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5813. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  5814. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLink
  5815. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLink
  5816. pub fn aya::programs::sk_skb::SkSkbLink::eq(&self, other: &Self) -> bool
  5817. impl core::convert::From<aya::programs::links::ProgAttachLink> for aya::programs::sk_skb::SkSkbLink
  5818. pub fn aya::programs::sk_skb::SkSkbLink::from(b: aya::programs::links::ProgAttachLink) -> aya::programs::sk_skb::SkSkbLink
  5819. impl core::convert::From<aya::programs::sk_skb::SkSkbLink> for aya::programs::links::ProgAttachLink
  5820. pub fn aya::programs::links::ProgAttachLink::from(w: aya::programs::sk_skb::SkSkbLink) -> aya::programs::links::ProgAttachLink
  5821. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLink
  5822. pub fn aya::programs::sk_skb::SkSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5823. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLink
  5824. pub fn aya::programs::sk_skb::SkSkbLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5825. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkbLink
  5826. pub fn aya::programs::sk_skb::SkSkbLink::drop(&mut self)
  5827. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5828. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5829. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLink
  5830. impl core::marker::Send for aya::programs::sk_skb::SkSkbLink
  5831. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLink
  5832. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLink
  5833. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLink
  5834. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLink
  5835. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5836. pub fn aya::programs::sk_skb::SkSkbLink::equivalent(&self, key: &K) -> bool
  5837. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::From<T>
  5838. pub fn aya::programs::sk_skb::SkSkbLink::into(self) -> U
  5839. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::Into<T>
  5840. pub type aya::programs::sk_skb::SkSkbLink::Error = core::convert::Infallible
  5841. pub fn aya::programs::sk_skb::SkSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5842. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLink where U: core::convert::TryFrom<T>
  5843. pub type aya::programs::sk_skb::SkSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  5844. pub fn aya::programs::sk_skb::SkSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5845. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLink where T: 'static + ?core::marker::Sized
  5846. pub fn aya::programs::sk_skb::SkSkbLink::type_id(&self) -> core::any::TypeId
  5847. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5848. pub fn aya::programs::sk_skb::SkSkbLink::borrow(&self) -> &T
  5849. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLink where T: ?core::marker::Sized
  5850. pub fn aya::programs::sk_skb::SkSkbLink::borrow_mut(&mut self) -> &mut T
  5851. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLink
  5852. pub fn aya::programs::sk_skb::SkSkbLink::from(t: T) -> T
  5853. pub struct aya::programs::sk_skb::SkSkbLinkId(_)
  5854. impl core::cmp::Eq for aya::programs::sk_skb::SkSkbLinkId
  5855. impl core::cmp::PartialEq for aya::programs::sk_skb::SkSkbLinkId
  5856. pub fn aya::programs::sk_skb::SkSkbLinkId::eq(&self, other: &aya::programs::sk_skb::SkSkbLinkId) -> bool
  5857. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbLinkId
  5858. pub fn aya::programs::sk_skb::SkSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5859. impl core::hash::Hash for aya::programs::sk_skb::SkSkbLinkId
  5860. pub fn aya::programs::sk_skb::SkSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5861. impl core::marker::StructuralPartialEq for aya::programs::sk_skb::SkSkbLinkId
  5862. impl equivalent::Equivalent<aya::programs::sk_skb::SkSkbLink> for aya::programs::sk_skb::SkSkbLinkId
  5863. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &aya::programs::sk_skb::SkSkbLink) -> bool
  5864. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbLinkId
  5865. impl core::marker::Send for aya::programs::sk_skb::SkSkbLinkId
  5866. impl core::marker::Sync for aya::programs::sk_skb::SkSkbLinkId
  5867. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbLinkId
  5868. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5869. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbLinkId
  5870. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sk_skb::SkSkbLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5871. pub fn aya::programs::sk_skb::SkSkbLinkId::equivalent(&self, key: &K) -> bool
  5872. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::From<T>
  5873. pub fn aya::programs::sk_skb::SkSkbLinkId::into(self) -> U
  5874. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::Into<T>
  5875. pub type aya::programs::sk_skb::SkSkbLinkId::Error = core::convert::Infallible
  5876. pub fn aya::programs::sk_skb::SkSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5877. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbLinkId where U: core::convert::TryFrom<T>
  5878. pub type aya::programs::sk_skb::SkSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5879. pub fn aya::programs::sk_skb::SkSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5880. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbLinkId where T: 'static + ?core::marker::Sized
  5881. pub fn aya::programs::sk_skb::SkSkbLinkId::type_id(&self) -> core::any::TypeId
  5882. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5883. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow(&self) -> &T
  5884. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbLinkId where T: ?core::marker::Sized
  5885. pub fn aya::programs::sk_skb::SkSkbLinkId::borrow_mut(&mut self) -> &mut T
  5886. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbLinkId
  5887. pub fn aya::programs::sk_skb::SkSkbLinkId::from(t: T) -> T
  5888. pub mod aya::programs::sock_ops
  5889. pub struct aya::programs::sock_ops::SockOps
  5890. impl aya::programs::sock_ops::SockOps
  5891. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  5892. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  5893. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5894. impl aya::programs::sock_ops::SockOps
  5895. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5896. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  5897. impl aya::programs::sock_ops::SockOps
  5898. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5899. impl aya::programs::sock_ops::SockOps
  5900. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5901. impl aya::programs::sock_ops::SockOps
  5902. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  5903. impl aya::programs::sock_ops::SockOps
  5904. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5905. impl aya::programs::sock_ops::SockOps
  5906. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5907. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5908. impl aya::programs::sock_ops::SockOps
  5909. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5910. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  5911. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5912. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  5913. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  5914. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  5915. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  5916. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  5917. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  5918. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  5919. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  5920. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  5921. impl core::marker::Send for aya::programs::sock_ops::SockOps
  5922. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  5923. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  5924. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  5925. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  5926. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  5927. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  5928. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  5929. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  5930. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5931. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  5932. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  5933. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5934. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  5935. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  5936. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  5937. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  5938. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  5939. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  5940. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  5941. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  5942. pub struct aya::programs::sock_ops::SockOpsLink(_)
  5943. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  5944. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  5945. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5946. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  5947. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLink
  5948. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLink
  5949. pub fn aya::programs::sock_ops::SockOpsLink::eq(&self, other: &Self) -> bool
  5950. impl core::convert::TryFrom<aya::programs::sock_ops::SockOpsLink> for aya::programs::links::FdLink
  5951. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5952. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::sock_ops::SockOpsLink) -> core::result::Result<Self, Self::Error>
  5953. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLink
  5954. pub fn aya::programs::sock_ops::SockOpsLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5955. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLink
  5956. pub fn aya::programs::sock_ops::SockOpsLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  5957. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOpsLink
  5958. pub fn aya::programs::sock_ops::SockOpsLink::drop(&mut self)
  5959. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  5960. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  5961. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLink
  5962. impl core::marker::Send for aya::programs::sock_ops::SockOpsLink
  5963. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLink
  5964. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLink
  5965. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLink
  5966. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLink
  5967. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  5968. pub fn aya::programs::sock_ops::SockOpsLink::equivalent(&self, key: &K) -> bool
  5969. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::From<T>
  5970. pub fn aya::programs::sock_ops::SockOpsLink::into(self) -> U
  5971. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::Into<T>
  5972. pub type aya::programs::sock_ops::SockOpsLink::Error = core::convert::Infallible
  5973. pub fn aya::programs::sock_ops::SockOpsLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5974. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLink where U: core::convert::TryFrom<T>
  5975. pub type aya::programs::sock_ops::SockOpsLink::Error = <U as core::convert::TryFrom<T>>::Error
  5976. pub fn aya::programs::sock_ops::SockOpsLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5977. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLink where T: 'static + ?core::marker::Sized
  5978. pub fn aya::programs::sock_ops::SockOpsLink::type_id(&self) -> core::any::TypeId
  5979. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  5980. pub fn aya::programs::sock_ops::SockOpsLink::borrow(&self) -> &T
  5981. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLink where T: ?core::marker::Sized
  5982. pub fn aya::programs::sock_ops::SockOpsLink::borrow_mut(&mut self) -> &mut T
  5983. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLink
  5984. pub fn aya::programs::sock_ops::SockOpsLink::from(t: T) -> T
  5985. pub struct aya::programs::sock_ops::SockOpsLinkId(_)
  5986. impl core::cmp::Eq for aya::programs::sock_ops::SockOpsLinkId
  5987. impl core::cmp::PartialEq for aya::programs::sock_ops::SockOpsLinkId
  5988. pub fn aya::programs::sock_ops::SockOpsLinkId::eq(&self, other: &aya::programs::sock_ops::SockOpsLinkId) -> bool
  5989. impl core::fmt::Debug for aya::programs::sock_ops::SockOpsLinkId
  5990. pub fn aya::programs::sock_ops::SockOpsLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5991. impl core::hash::Hash for aya::programs::sock_ops::SockOpsLinkId
  5992. pub fn aya::programs::sock_ops::SockOpsLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5993. impl core::marker::StructuralPartialEq for aya::programs::sock_ops::SockOpsLinkId
  5994. impl equivalent::Equivalent<aya::programs::sock_ops::SockOpsLink> for aya::programs::sock_ops::SockOpsLinkId
  5995. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &aya::programs::sock_ops::SockOpsLink) -> bool
  5996. impl core::marker::Freeze for aya::programs::sock_ops::SockOpsLinkId
  5997. impl core::marker::Send for aya::programs::sock_ops::SockOpsLinkId
  5998. impl core::marker::Sync for aya::programs::sock_ops::SockOpsLinkId
  5999. impl core::marker::Unpin for aya::programs::sock_ops::SockOpsLinkId
  6000. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6001. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOpsLinkId
  6002. impl<Q, K> equivalent::Equivalent<K> for aya::programs::sock_ops::SockOpsLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6003. pub fn aya::programs::sock_ops::SockOpsLinkId::equivalent(&self, key: &K) -> bool
  6004. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::From<T>
  6005. pub fn aya::programs::sock_ops::SockOpsLinkId::into(self) -> U
  6006. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::Into<T>
  6007. pub type aya::programs::sock_ops::SockOpsLinkId::Error = core::convert::Infallible
  6008. pub fn aya::programs::sock_ops::SockOpsLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6009. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOpsLinkId where U: core::convert::TryFrom<T>
  6010. pub type aya::programs::sock_ops::SockOpsLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6011. pub fn aya::programs::sock_ops::SockOpsLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6012. impl<T> core::any::Any for aya::programs::sock_ops::SockOpsLinkId where T: 'static + ?core::marker::Sized
  6013. pub fn aya::programs::sock_ops::SockOpsLinkId::type_id(&self) -> core::any::TypeId
  6014. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6015. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow(&self) -> &T
  6016. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOpsLinkId where T: ?core::marker::Sized
  6017. pub fn aya::programs::sock_ops::SockOpsLinkId::borrow_mut(&mut self) -> &mut T
  6018. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOpsLinkId
  6019. pub fn aya::programs::sock_ops::SockOpsLinkId::from(t: T) -> T
  6020. pub mod aya::programs::socket_filter
  6021. pub enum aya::programs::socket_filter::SocketFilterError
  6022. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError
  6023. pub aya::programs::socket_filter::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  6024. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  6025. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  6026. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  6027. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6028. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  6029. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6030. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  6031. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6032. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  6033. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  6034. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  6035. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  6036. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  6037. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  6038. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  6039. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  6040. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  6041. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  6042. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6043. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  6044. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  6045. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6046. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  6047. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  6048. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  6049. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  6050. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6051. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  6052. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  6053. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  6054. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  6055. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  6056. pub struct aya::programs::socket_filter::SocketFilter
  6057. impl aya::programs::socket_filter::SocketFilter
  6058. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  6059. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  6060. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6061. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6062. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  6063. impl aya::programs::socket_filter::SocketFilter
  6064. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6065. impl aya::programs::socket_filter::SocketFilter
  6066. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6067. impl aya::programs::socket_filter::SocketFilter
  6068. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6069. impl aya::programs::socket_filter::SocketFilter
  6070. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6071. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6072. impl aya::programs::socket_filter::SocketFilter
  6073. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6074. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  6075. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6076. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  6077. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  6078. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  6079. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6080. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6081. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  6082. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  6083. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  6084. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  6085. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  6086. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  6087. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  6088. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  6089. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  6090. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  6091. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  6092. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  6093. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  6094. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6095. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  6096. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  6097. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6098. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  6099. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  6100. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6101. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  6102. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  6103. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  6104. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  6105. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  6106. pub struct aya::programs::socket_filter::SocketFilterLink
  6107. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  6108. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  6109. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6110. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  6111. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLink
  6112. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLink
  6113. pub fn aya::programs::socket_filter::SocketFilterLink::eq(&self, other: &Self) -> bool
  6114. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLink
  6115. pub fn aya::programs::socket_filter::SocketFilterLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6116. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLink
  6117. pub fn aya::programs::socket_filter::SocketFilterLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6118. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6119. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6120. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLink
  6121. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLink
  6122. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLink
  6123. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLink
  6124. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6125. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLink
  6126. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6127. pub fn aya::programs::socket_filter::SocketFilterLink::equivalent(&self, key: &K) -> bool
  6128. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::From<T>
  6129. pub fn aya::programs::socket_filter::SocketFilterLink::into(self) -> U
  6130. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::Into<T>
  6131. pub type aya::programs::socket_filter::SocketFilterLink::Error = core::convert::Infallible
  6132. pub fn aya::programs::socket_filter::SocketFilterLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6133. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLink where U: core::convert::TryFrom<T>
  6134. pub type aya::programs::socket_filter::SocketFilterLink::Error = <U as core::convert::TryFrom<T>>::Error
  6135. pub fn aya::programs::socket_filter::SocketFilterLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6136. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLink where T: 'static + ?core::marker::Sized
  6137. pub fn aya::programs::socket_filter::SocketFilterLink::type_id(&self) -> core::any::TypeId
  6138. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6139. pub fn aya::programs::socket_filter::SocketFilterLink::borrow(&self) -> &T
  6140. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLink where T: ?core::marker::Sized
  6141. pub fn aya::programs::socket_filter::SocketFilterLink::borrow_mut(&mut self) -> &mut T
  6142. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLink
  6143. pub fn aya::programs::socket_filter::SocketFilterLink::from(t: T) -> T
  6144. pub struct aya::programs::socket_filter::SocketFilterLinkId(_, _)
  6145. impl core::cmp::Eq for aya::programs::socket_filter::SocketFilterLinkId
  6146. impl core::cmp::PartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6147. pub fn aya::programs::socket_filter::SocketFilterLinkId::eq(&self, other: &aya::programs::socket_filter::SocketFilterLinkId) -> bool
  6148. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterLinkId
  6149. pub fn aya::programs::socket_filter::SocketFilterLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6150. impl core::hash::Hash for aya::programs::socket_filter::SocketFilterLinkId
  6151. pub fn aya::programs::socket_filter::SocketFilterLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6152. impl core::marker::StructuralPartialEq for aya::programs::socket_filter::SocketFilterLinkId
  6153. impl equivalent::Equivalent<aya::programs::socket_filter::SocketFilterLink> for aya::programs::socket_filter::SocketFilterLinkId
  6154. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &aya::programs::socket_filter::SocketFilterLink) -> bool
  6155. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterLinkId
  6156. impl core::marker::Send for aya::programs::socket_filter::SocketFilterLinkId
  6157. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterLinkId
  6158. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterLinkId
  6159. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6160. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterLinkId
  6161. impl<Q, K> equivalent::Equivalent<K> for aya::programs::socket_filter::SocketFilterLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6162. pub fn aya::programs::socket_filter::SocketFilterLinkId::equivalent(&self, key: &K) -> bool
  6163. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::From<T>
  6164. pub fn aya::programs::socket_filter::SocketFilterLinkId::into(self) -> U
  6165. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::Into<T>
  6166. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = core::convert::Infallible
  6167. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6168. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterLinkId where U: core::convert::TryFrom<T>
  6169. pub type aya::programs::socket_filter::SocketFilterLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6170. pub fn aya::programs::socket_filter::SocketFilterLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6171. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterLinkId where T: 'static + ?core::marker::Sized
  6172. pub fn aya::programs::socket_filter::SocketFilterLinkId::type_id(&self) -> core::any::TypeId
  6173. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6174. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow(&self) -> &T
  6175. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterLinkId where T: ?core::marker::Sized
  6176. pub fn aya::programs::socket_filter::SocketFilterLinkId::borrow_mut(&mut self) -> &mut T
  6177. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterLinkId
  6178. pub fn aya::programs::socket_filter::SocketFilterLinkId::from(t: T) -> T
  6179. pub mod aya::programs::tc
  6180. pub enum aya::programs::tc::TcAttachOptions
  6181. pub aya::programs::tc::TcAttachOptions::Netlink(aya::programs::tc::NlOptions)
  6182. pub aya::programs::tc::TcAttachOptions::TcxOrder(aya::programs::links::LinkOrder)
  6183. impl core::fmt::Debug for aya::programs::tc::TcAttachOptions
  6184. pub fn aya::programs::tc::TcAttachOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6185. impl core::marker::Freeze for aya::programs::tc::TcAttachOptions
  6186. impl core::marker::Send for aya::programs::tc::TcAttachOptions
  6187. impl core::marker::Sync for aya::programs::tc::TcAttachOptions
  6188. impl core::marker::Unpin for aya::programs::tc::TcAttachOptions
  6189. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachOptions
  6190. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachOptions
  6191. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachOptions where U: core::convert::From<T>
  6192. pub fn aya::programs::tc::TcAttachOptions::into(self) -> U
  6193. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachOptions where U: core::convert::Into<T>
  6194. pub type aya::programs::tc::TcAttachOptions::Error = core::convert::Infallible
  6195. pub fn aya::programs::tc::TcAttachOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6196. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachOptions where U: core::convert::TryFrom<T>
  6197. pub type aya::programs::tc::TcAttachOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6198. pub fn aya::programs::tc::TcAttachOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6199. impl<T> core::any::Any for aya::programs::tc::TcAttachOptions where T: 'static + ?core::marker::Sized
  6200. pub fn aya::programs::tc::TcAttachOptions::type_id(&self) -> core::any::TypeId
  6201. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6202. pub fn aya::programs::tc::TcAttachOptions::borrow(&self) -> &T
  6203. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachOptions where T: ?core::marker::Sized
  6204. pub fn aya::programs::tc::TcAttachOptions::borrow_mut(&mut self) -> &mut T
  6205. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachOptions
  6206. pub fn aya::programs::tc::TcAttachOptions::from(t: T) -> T
  6207. pub enum aya::programs::tc::TcAttachType
  6208. pub aya::programs::tc::TcAttachType::Custom(u32)
  6209. pub aya::programs::tc::TcAttachType::Egress
  6210. pub aya::programs::tc::TcAttachType::Ingress
  6211. impl core::clone::Clone for aya::programs::tc::TcAttachType
  6212. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  6213. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  6214. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  6215. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  6216. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  6217. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6218. impl core::hash::Hash for aya::programs::tc::TcAttachType
  6219. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6220. impl core::marker::Copy for aya::programs::tc::TcAttachType
  6221. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  6222. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  6223. impl core::marker::Send for aya::programs::tc::TcAttachType
  6224. impl core::marker::Sync for aya::programs::tc::TcAttachType
  6225. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  6226. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  6227. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  6228. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6229. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  6230. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  6231. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  6232. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  6233. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  6234. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6235. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  6236. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  6237. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6238. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6239. pub type aya::programs::tc::TcAttachType::Owned = T
  6240. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  6241. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  6242. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  6243. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  6244. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6245. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  6246. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  6247. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  6248. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  6249. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  6250. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  6251. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  6252. pub enum aya::programs::tc::TcError
  6253. pub aya::programs::tc::TcError::AlreadyAttached
  6254. pub aya::programs::tc::TcError::InvalidLinkOperation
  6255. pub aya::programs::tc::TcError::InvalidTcxAttach(u32)
  6256. pub aya::programs::tc::TcError::IoError(std::io::error::Error)
  6257. pub aya::programs::tc::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  6258. pub aya::programs::tc::TcError::NulError(alloc::ffi::c_str::NulError)
  6259. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  6260. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  6261. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  6262. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  6263. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  6264. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  6265. impl core::error::Error for aya::programs::tc::TcError
  6266. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6267. impl core::fmt::Debug for aya::programs::tc::TcError
  6268. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6269. impl core::fmt::Display for aya::programs::tc::TcError
  6270. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6271. impl core::marker::Freeze for aya::programs::tc::TcError
  6272. impl core::marker::Send for aya::programs::tc::TcError
  6273. impl core::marker::Sync for aya::programs::tc::TcError
  6274. impl core::marker::Unpin for aya::programs::tc::TcError
  6275. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  6276. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  6277. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  6278. pub fn aya::programs::tc::TcError::into(self) -> U
  6279. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  6280. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  6281. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6282. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  6283. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  6284. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6285. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  6286. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  6287. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  6288. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  6289. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6290. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  6291. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  6292. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  6293. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  6294. pub fn aya::programs::tc::TcError::from(t: T) -> T
  6295. pub struct aya::programs::tc::NlOptions
  6296. pub aya::programs::tc::NlOptions::handle: u32
  6297. pub aya::programs::tc::NlOptions::priority: u16
  6298. impl core::cmp::Eq for aya::programs::tc::NlOptions
  6299. impl core::cmp::PartialEq for aya::programs::tc::NlOptions
  6300. pub fn aya::programs::tc::NlOptions::eq(&self, other: &aya::programs::tc::NlOptions) -> bool
  6301. impl core::default::Default for aya::programs::tc::NlOptions
  6302. pub fn aya::programs::tc::NlOptions::default() -> aya::programs::tc::NlOptions
  6303. impl core::fmt::Debug for aya::programs::tc::NlOptions
  6304. pub fn aya::programs::tc::NlOptions::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6305. impl core::hash::Hash for aya::programs::tc::NlOptions
  6306. pub fn aya::programs::tc::NlOptions::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6307. impl core::marker::StructuralPartialEq for aya::programs::tc::NlOptions
  6308. impl core::marker::Freeze for aya::programs::tc::NlOptions
  6309. impl core::marker::Send for aya::programs::tc::NlOptions
  6310. impl core::marker::Sync for aya::programs::tc::NlOptions
  6311. impl core::marker::Unpin for aya::programs::tc::NlOptions
  6312. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::NlOptions
  6313. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::NlOptions
  6314. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::NlOptions where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6315. pub fn aya::programs::tc::NlOptions::equivalent(&self, key: &K) -> bool
  6316. impl<T, U> core::convert::Into<U> for aya::programs::tc::NlOptions where U: core::convert::From<T>
  6317. pub fn aya::programs::tc::NlOptions::into(self) -> U
  6318. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::NlOptions where U: core::convert::Into<T>
  6319. pub type aya::programs::tc::NlOptions::Error = core::convert::Infallible
  6320. pub fn aya::programs::tc::NlOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6321. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::NlOptions where U: core::convert::TryFrom<T>
  6322. pub type aya::programs::tc::NlOptions::Error = <U as core::convert::TryFrom<T>>::Error
  6323. pub fn aya::programs::tc::NlOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6324. impl<T> core::any::Any for aya::programs::tc::NlOptions where T: 'static + ?core::marker::Sized
  6325. pub fn aya::programs::tc::NlOptions::type_id(&self) -> core::any::TypeId
  6326. impl<T> core::borrow::Borrow<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6327. pub fn aya::programs::tc::NlOptions::borrow(&self) -> &T
  6328. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::NlOptions where T: ?core::marker::Sized
  6329. pub fn aya::programs::tc::NlOptions::borrow_mut(&mut self) -> &mut T
  6330. impl<T> core::convert::From<T> for aya::programs::tc::NlOptions
  6331. pub fn aya::programs::tc::NlOptions::from(t: T) -> T
  6332. pub struct aya::programs::tc::SchedClassifier
  6333. impl aya::programs::tc::SchedClassifier
  6334. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  6335. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6336. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6337. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6338. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6339. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6340. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  6341. impl aya::programs::tc::SchedClassifier
  6342. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6343. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  6344. impl aya::programs::tc::SchedClassifier
  6345. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6346. impl aya::programs::tc::SchedClassifier
  6347. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6348. impl aya::programs::tc::SchedClassifier
  6349. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6350. impl aya::programs::tc::SchedClassifier
  6351. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6352. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6353. impl aya::programs::tc::SchedClassifier
  6354. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6355. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  6356. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  6357. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  6358. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6359. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  6360. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  6361. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  6362. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6363. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6364. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  6365. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6366. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6367. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  6368. impl core::marker::Send for aya::programs::tc::SchedClassifier
  6369. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  6370. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  6371. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  6372. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  6373. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  6374. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  6375. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  6376. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  6377. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6378. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  6379. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  6380. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6381. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  6382. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  6383. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6384. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  6385. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  6386. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  6387. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  6388. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  6389. pub struct aya::programs::tc::SchedClassifierLink(_)
  6390. impl aya::programs::tc::SchedClassifierLink
  6391. pub fn aya::programs::tc::SchedClassifierLink::attach_type(&self) -> core::result::Result<aya::programs::tc::TcAttachType, aya::programs::ProgramError>
  6392. pub fn aya::programs::tc::SchedClassifierLink::attached(if_name: &str, attach_type: aya::programs::tc::TcAttachType, priority: u16, handle: u32) -> core::result::Result<Self, std::io::error::Error>
  6393. pub fn aya::programs::tc::SchedClassifierLink::handle(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  6394. pub fn aya::programs::tc::SchedClassifierLink::priority(&self) -> core::result::Result<u16, aya::programs::ProgramError>
  6395. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  6396. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  6397. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  6398. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  6399. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6400. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  6401. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLink
  6402. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLink
  6403. pub fn aya::programs::tc::SchedClassifierLink::eq(&self, other: &Self) -> bool
  6404. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::tc::SchedClassifierLink
  6405. pub type aya::programs::tc::SchedClassifierLink::Error = aya::programs::links::LinkError
  6406. pub fn aya::programs::tc::SchedClassifierLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6407. impl core::convert::TryFrom<aya::programs::tc::SchedClassifierLink> for aya::programs::links::FdLink
  6408. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6409. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6410. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLink
  6411. pub fn aya::programs::tc::SchedClassifierLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6412. impl core::hash::Hash for aya::programs::tc::SchedClassifierLink
  6413. pub fn aya::programs::tc::SchedClassifierLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6414. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifierLink
  6415. pub fn aya::programs::tc::SchedClassifierLink::drop(&mut self)
  6416. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6417. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6418. impl<'a> core::convert::TryFrom<&'a aya::programs::tc::SchedClassifierLink> for &'a aya::programs::links::FdLink
  6419. pub type &'a aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6420. pub fn &'a aya::programs::links::FdLink::try_from(value: &'a aya::programs::tc::SchedClassifierLink) -> core::result::Result<Self, Self::Error>
  6421. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLink
  6422. impl core::marker::Send for aya::programs::tc::SchedClassifierLink
  6423. impl core::marker::Sync for aya::programs::tc::SchedClassifierLink
  6424. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLink
  6425. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLink
  6426. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLink
  6427. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6428. pub fn aya::programs::tc::SchedClassifierLink::equivalent(&self, key: &K) -> bool
  6429. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::From<T>
  6430. pub fn aya::programs::tc::SchedClassifierLink::into(self) -> U
  6431. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::Into<T>
  6432. pub type aya::programs::tc::SchedClassifierLink::Error = core::convert::Infallible
  6433. pub fn aya::programs::tc::SchedClassifierLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6434. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::TryFrom<T>
  6435. pub type aya::programs::tc::SchedClassifierLink::Error = <U as core::convert::TryFrom<T>>::Error
  6436. pub fn aya::programs::tc::SchedClassifierLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6437. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLink where T: 'static + ?core::marker::Sized
  6438. pub fn aya::programs::tc::SchedClassifierLink::type_id(&self) -> core::any::TypeId
  6439. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6440. pub fn aya::programs::tc::SchedClassifierLink::borrow(&self) -> &T
  6441. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLink where T: ?core::marker::Sized
  6442. pub fn aya::programs::tc::SchedClassifierLink::borrow_mut(&mut self) -> &mut T
  6443. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLink
  6444. pub fn aya::programs::tc::SchedClassifierLink::from(t: T) -> T
  6445. pub struct aya::programs::tc::SchedClassifierLinkId(_)
  6446. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLinkId
  6447. impl core::cmp::PartialEq for aya::programs::tc::SchedClassifierLinkId
  6448. pub fn aya::programs::tc::SchedClassifierLinkId::eq(&self, other: &aya::programs::tc::SchedClassifierLinkId) -> bool
  6449. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLinkId
  6450. pub fn aya::programs::tc::SchedClassifierLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6451. impl core::hash::Hash for aya::programs::tc::SchedClassifierLinkId
  6452. pub fn aya::programs::tc::SchedClassifierLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6453. impl core::marker::StructuralPartialEq for aya::programs::tc::SchedClassifierLinkId
  6454. impl equivalent::Equivalent<aya::programs::tc::SchedClassifierLink> for aya::programs::tc::SchedClassifierLinkId
  6455. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &aya::programs::tc::SchedClassifierLink) -> bool
  6456. impl core::marker::Freeze for aya::programs::tc::SchedClassifierLinkId
  6457. impl core::marker::Send for aya::programs::tc::SchedClassifierLinkId
  6458. impl core::marker::Sync for aya::programs::tc::SchedClassifierLinkId
  6459. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLinkId
  6460. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6461. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLinkId
  6462. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::SchedClassifierLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6463. pub fn aya::programs::tc::SchedClassifierLinkId::equivalent(&self, key: &K) -> bool
  6464. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::From<T>
  6465. pub fn aya::programs::tc::SchedClassifierLinkId::into(self) -> U
  6466. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::Into<T>
  6467. pub type aya::programs::tc::SchedClassifierLinkId::Error = core::convert::Infallible
  6468. pub fn aya::programs::tc::SchedClassifierLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6469. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::TryFrom<T>
  6470. pub type aya::programs::tc::SchedClassifierLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6471. pub fn aya::programs::tc::SchedClassifierLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6472. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLinkId where T: 'static + ?core::marker::Sized
  6473. pub fn aya::programs::tc::SchedClassifierLinkId::type_id(&self) -> core::any::TypeId
  6474. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6475. pub fn aya::programs::tc::SchedClassifierLinkId::borrow(&self) -> &T
  6476. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLinkId where T: ?core::marker::Sized
  6477. pub fn aya::programs::tc::SchedClassifierLinkId::borrow_mut(&mut self) -> &mut T
  6478. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLinkId
  6479. pub fn aya::programs::tc::SchedClassifierLinkId::from(t: T) -> T
  6480. pub fn aya::programs::tc::qdisc_add_clsact(if_name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6481. pub fn aya::programs::tc::qdisc_detach_program(if_name: &str, attach_type: aya::programs::tc::TcAttachType, name: &str) -> core::result::Result<(), aya::programs::tc::TcError>
  6482. pub mod aya::programs::tp_btf
  6483. pub struct aya::programs::tp_btf::BtfTracePoint
  6484. impl aya::programs::tp_btf::BtfTracePoint
  6485. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6486. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  6487. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6488. impl aya::programs::tp_btf::BtfTracePoint
  6489. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6490. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  6491. impl aya::programs::tp_btf::BtfTracePoint
  6492. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6493. impl aya::programs::tp_btf::BtfTracePoint
  6494. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6495. impl aya::programs::tp_btf::BtfTracePoint
  6496. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6497. impl aya::programs::tp_btf::BtfTracePoint
  6498. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6499. impl aya::programs::tp_btf::BtfTracePoint
  6500. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6501. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6502. impl aya::programs::tp_btf::BtfTracePoint
  6503. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6504. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  6505. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6506. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  6507. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  6508. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  6509. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6510. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6511. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  6512. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  6513. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  6514. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  6515. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  6516. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  6517. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  6518. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6519. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  6520. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  6521. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  6522. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  6523. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  6524. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6525. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  6526. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6527. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6528. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  6529. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  6530. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6531. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  6532. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  6533. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  6534. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  6535. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  6536. pub struct aya::programs::tp_btf::BtfTracePointLink(_)
  6537. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  6538. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  6539. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6540. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  6541. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLink
  6542. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLink
  6543. pub fn aya::programs::tp_btf::BtfTracePointLink::eq(&self, other: &Self) -> bool
  6544. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  6545. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  6546. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  6547. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  6548. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLink
  6549. pub fn aya::programs::tp_btf::BtfTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6550. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLink
  6551. pub fn aya::programs::tp_btf::BtfTracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6552. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePointLink
  6553. pub fn aya::programs::tp_btf::BtfTracePointLink::drop(&mut self)
  6554. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6555. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6556. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLink
  6557. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLink
  6558. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLink
  6559. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLink
  6560. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6561. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  6562. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6563. pub fn aya::programs::tp_btf::BtfTracePointLink::equivalent(&self, key: &K) -> bool
  6564. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::From<T>
  6565. pub fn aya::programs::tp_btf::BtfTracePointLink::into(self) -> U
  6566. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::Into<T>
  6567. pub type aya::programs::tp_btf::BtfTracePointLink::Error = core::convert::Infallible
  6568. pub fn aya::programs::tp_btf::BtfTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6569. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::TryFrom<T>
  6570. pub type aya::programs::tp_btf::BtfTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6571. pub fn aya::programs::tp_btf::BtfTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6572. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLink where T: 'static + ?core::marker::Sized
  6573. pub fn aya::programs::tp_btf::BtfTracePointLink::type_id(&self) -> core::any::TypeId
  6574. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6575. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow(&self) -> &T
  6576. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLink where T: ?core::marker::Sized
  6577. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow_mut(&mut self) -> &mut T
  6578. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLink
  6579. pub fn aya::programs::tp_btf::BtfTracePointLink::from(t: T) -> T
  6580. pub struct aya::programs::tp_btf::BtfTracePointLinkId(_)
  6581. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLinkId
  6582. impl core::cmp::PartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6583. pub fn aya::programs::tp_btf::BtfTracePointLinkId::eq(&self, other: &aya::programs::tp_btf::BtfTracePointLinkId) -> bool
  6584. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLinkId
  6585. pub fn aya::programs::tp_btf::BtfTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6586. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLinkId
  6587. pub fn aya::programs::tp_btf::BtfTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6588. impl core::marker::StructuralPartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  6589. impl equivalent::Equivalent<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::tp_btf::BtfTracePointLinkId
  6590. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &aya::programs::tp_btf::BtfTracePointLink) -> bool
  6591. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePointLinkId
  6592. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLinkId
  6593. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLinkId
  6594. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLinkId
  6595. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6596. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  6597. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tp_btf::BtfTracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6598. pub fn aya::programs::tp_btf::BtfTracePointLinkId::equivalent(&self, key: &K) -> bool
  6599. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::From<T>
  6600. pub fn aya::programs::tp_btf::BtfTracePointLinkId::into(self) -> U
  6601. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::Into<T>
  6602. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = core::convert::Infallible
  6603. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6604. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::TryFrom<T>
  6605. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6606. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6607. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLinkId where T: 'static + ?core::marker::Sized
  6608. pub fn aya::programs::tp_btf::BtfTracePointLinkId::type_id(&self) -> core::any::TypeId
  6609. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6610. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow(&self) -> &T
  6611. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: ?core::marker::Sized
  6612. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow_mut(&mut self) -> &mut T
  6613. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLinkId
  6614. pub fn aya::programs::tp_btf::BtfTracePointLinkId::from(t: T) -> T
  6615. pub mod aya::programs::trace_point
  6616. pub enum aya::programs::trace_point::TracePointError
  6617. pub aya::programs::trace_point::TracePointError::FileError
  6618. pub aya::programs::trace_point::TracePointError::FileError::filename: std::path::PathBuf
  6619. pub aya::programs::trace_point::TracePointError::FileError::io_error: std::io::error::Error
  6620. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  6621. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  6622. impl core::error::Error for aya::programs::trace_point::TracePointError
  6623. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6624. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  6625. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6626. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  6627. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6628. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  6629. impl core::marker::Send for aya::programs::trace_point::TracePointError
  6630. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  6631. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  6632. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  6633. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  6634. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  6635. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  6636. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  6637. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  6638. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6639. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  6640. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  6641. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6642. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  6643. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  6644. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  6645. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  6646. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6647. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  6648. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  6649. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  6650. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  6651. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  6652. pub struct aya::programs::trace_point::TracePoint
  6653. impl aya::programs::trace_point::TracePoint
  6654. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  6655. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  6656. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6657. impl aya::programs::trace_point::TracePoint
  6658. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6659. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  6660. impl aya::programs::trace_point::TracePoint
  6661. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6662. impl aya::programs::trace_point::TracePoint
  6663. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6664. impl aya::programs::trace_point::TracePoint
  6665. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  6666. impl aya::programs::trace_point::TracePoint
  6667. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6668. impl aya::programs::trace_point::TracePoint
  6669. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6670. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6671. impl aya::programs::trace_point::TracePoint
  6672. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6673. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  6674. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6675. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  6676. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  6677. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  6678. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6679. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  6680. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  6681. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  6682. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  6683. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  6684. impl core::marker::Send for aya::programs::trace_point::TracePoint
  6685. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  6686. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  6687. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  6688. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  6689. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  6690. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  6691. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  6692. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  6693. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6694. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  6695. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6696. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6697. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  6698. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  6699. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6700. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  6701. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  6702. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  6703. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  6704. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  6705. pub struct aya::programs::trace_point::TracePointLink(_)
  6706. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  6707. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  6708. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6709. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  6710. impl core::cmp::Eq for aya::programs::trace_point::TracePointLink
  6711. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLink
  6712. pub fn aya::programs::trace_point::TracePointLink::eq(&self, other: &Self) -> bool
  6713. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  6714. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  6715. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6716. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  6717. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6718. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  6719. impl core::fmt::Debug for aya::programs::trace_point::TracePointLink
  6720. pub fn aya::programs::trace_point::TracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6721. impl core::hash::Hash for aya::programs::trace_point::TracePointLink
  6722. pub fn aya::programs::trace_point::TracePointLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6723. impl core::ops::drop::Drop for aya::programs::trace_point::TracePointLink
  6724. pub fn aya::programs::trace_point::TracePointLink::drop(&mut self)
  6725. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6726. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6727. impl core::marker::Freeze for aya::programs::trace_point::TracePointLink
  6728. impl core::marker::Send for aya::programs::trace_point::TracePointLink
  6729. impl core::marker::Sync for aya::programs::trace_point::TracePointLink
  6730. impl core::marker::Unpin for aya::programs::trace_point::TracePointLink
  6731. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLink
  6732. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLink
  6733. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6734. pub fn aya::programs::trace_point::TracePointLink::equivalent(&self, key: &K) -> bool
  6735. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLink where U: core::convert::From<T>
  6736. pub fn aya::programs::trace_point::TracePointLink::into(self) -> U
  6737. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLink where U: core::convert::Into<T>
  6738. pub type aya::programs::trace_point::TracePointLink::Error = core::convert::Infallible
  6739. pub fn aya::programs::trace_point::TracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6740. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLink where U: core::convert::TryFrom<T>
  6741. pub type aya::programs::trace_point::TracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  6742. pub fn aya::programs::trace_point::TracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6743. impl<T> core::any::Any for aya::programs::trace_point::TracePointLink where T: 'static + ?core::marker::Sized
  6744. pub fn aya::programs::trace_point::TracePointLink::type_id(&self) -> core::any::TypeId
  6745. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6746. pub fn aya::programs::trace_point::TracePointLink::borrow(&self) -> &T
  6747. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLink where T: ?core::marker::Sized
  6748. pub fn aya::programs::trace_point::TracePointLink::borrow_mut(&mut self) -> &mut T
  6749. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLink
  6750. pub fn aya::programs::trace_point::TracePointLink::from(t: T) -> T
  6751. pub struct aya::programs::trace_point::TracePointLinkId(_)
  6752. impl core::cmp::Eq for aya::programs::trace_point::TracePointLinkId
  6753. impl core::cmp::PartialEq for aya::programs::trace_point::TracePointLinkId
  6754. pub fn aya::programs::trace_point::TracePointLinkId::eq(&self, other: &aya::programs::trace_point::TracePointLinkId) -> bool
  6755. impl core::fmt::Debug for aya::programs::trace_point::TracePointLinkId
  6756. pub fn aya::programs::trace_point::TracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6757. impl core::hash::Hash for aya::programs::trace_point::TracePointLinkId
  6758. pub fn aya::programs::trace_point::TracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  6759. impl core::marker::StructuralPartialEq for aya::programs::trace_point::TracePointLinkId
  6760. impl equivalent::Equivalent<aya::programs::trace_point::TracePointLink> for aya::programs::trace_point::TracePointLinkId
  6761. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &aya::programs::trace_point::TracePointLink) -> bool
  6762. impl core::marker::Freeze for aya::programs::trace_point::TracePointLinkId
  6763. impl core::marker::Send for aya::programs::trace_point::TracePointLinkId
  6764. impl core::marker::Sync for aya::programs::trace_point::TracePointLinkId
  6765. impl core::marker::Unpin for aya::programs::trace_point::TracePointLinkId
  6766. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLinkId
  6767. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLinkId
  6768. impl<Q, K> equivalent::Equivalent<K> for aya::programs::trace_point::TracePointLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6769. pub fn aya::programs::trace_point::TracePointLinkId::equivalent(&self, key: &K) -> bool
  6770. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::From<T>
  6771. pub fn aya::programs::trace_point::TracePointLinkId::into(self) -> U
  6772. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::Into<T>
  6773. pub type aya::programs::trace_point::TracePointLinkId::Error = core::convert::Infallible
  6774. pub fn aya::programs::trace_point::TracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6775. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::TryFrom<T>
  6776. pub type aya::programs::trace_point::TracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  6777. pub fn aya::programs::trace_point::TracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6778. impl<T> core::any::Any for aya::programs::trace_point::TracePointLinkId where T: 'static + ?core::marker::Sized
  6779. pub fn aya::programs::trace_point::TracePointLinkId::type_id(&self) -> core::any::TypeId
  6780. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6781. pub fn aya::programs::trace_point::TracePointLinkId::borrow(&self) -> &T
  6782. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLinkId where T: ?core::marker::Sized
  6783. pub fn aya::programs::trace_point::TracePointLinkId::borrow_mut(&mut self) -> &mut T
  6784. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLinkId
  6785. pub fn aya::programs::trace_point::TracePointLinkId::from(t: T) -> T
  6786. pub mod aya::programs::uprobe
  6787. pub enum aya::programs::uprobe::ProcMapError
  6788. pub aya::programs::uprobe::ProcMapError::ParseLine
  6789. pub aya::programs::uprobe::ProcMapError::ParseLine::line: alloc::vec::Vec<u8>
  6790. pub aya::programs::uprobe::ProcMapError::ReadFile(std::io::error::Error)
  6791. impl core::convert::From<std::io::error::Error> for aya::programs::uprobe::ProcMapError
  6792. pub fn aya::programs::uprobe::ProcMapError::from(source: std::io::error::Error) -> Self
  6793. impl core::error::Error for aya::programs::uprobe::ProcMapError
  6794. pub fn aya::programs::uprobe::ProcMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6795. impl core::fmt::Debug for aya::programs::uprobe::ProcMapError
  6796. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6797. impl core::fmt::Display for aya::programs::uprobe::ProcMapError
  6798. pub fn aya::programs::uprobe::ProcMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6799. impl core::marker::Freeze for aya::programs::uprobe::ProcMapError
  6800. impl core::marker::Send for aya::programs::uprobe::ProcMapError
  6801. impl core::marker::Sync for aya::programs::uprobe::ProcMapError
  6802. impl core::marker::Unpin for aya::programs::uprobe::ProcMapError
  6803. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::ProcMapError
  6804. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::ProcMapError
  6805. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::ProcMapError where U: core::convert::From<T>
  6806. pub fn aya::programs::uprobe::ProcMapError::into(self) -> U
  6807. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::ProcMapError where U: core::convert::Into<T>
  6808. pub type aya::programs::uprobe::ProcMapError::Error = core::convert::Infallible
  6809. pub fn aya::programs::uprobe::ProcMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6810. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::ProcMapError where U: core::convert::TryFrom<T>
  6811. pub type aya::programs::uprobe::ProcMapError::Error = <U as core::convert::TryFrom<T>>::Error
  6812. pub fn aya::programs::uprobe::ProcMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6813. impl<T> alloc::string::ToString for aya::programs::uprobe::ProcMapError where T: core::fmt::Display + ?core::marker::Sized
  6814. pub fn aya::programs::uprobe::ProcMapError::to_string(&self) -> alloc::string::String
  6815. impl<T> core::any::Any for aya::programs::uprobe::ProcMapError where T: 'static + ?core::marker::Sized
  6816. pub fn aya::programs::uprobe::ProcMapError::type_id(&self) -> core::any::TypeId
  6817. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6818. pub fn aya::programs::uprobe::ProcMapError::borrow(&self) -> &T
  6819. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::ProcMapError where T: ?core::marker::Sized
  6820. pub fn aya::programs::uprobe::ProcMapError::borrow_mut(&mut self) -> &mut T
  6821. impl<T> core::convert::From<T> for aya::programs::uprobe::ProcMapError
  6822. pub fn aya::programs::uprobe::ProcMapError::from(t: T) -> T
  6823. pub enum aya::programs::uprobe::UProbeAttachLocation<'a>
  6824. pub aya::programs::uprobe::UProbeAttachLocation::AbsoluteOffset(u64)
  6825. pub aya::programs::uprobe::UProbeAttachLocation::Symbol(&'a str)
  6826. pub aya::programs::uprobe::UProbeAttachLocation::SymbolOffset(&'a str, u64)
  6827. impl core::convert::From<u64> for aya::programs::uprobe::UProbeAttachLocation<'static>
  6828. pub fn aya::programs::uprobe::UProbeAttachLocation<'static>::from(offset: u64) -> Self
  6829. impl<'a> core::convert::From<&'a str> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6830. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(s: &'a str) -> Self
  6831. impl<'a> core::marker::Freeze for aya::programs::uprobe::UProbeAttachLocation<'a>
  6832. impl<'a> core::marker::Send for aya::programs::uprobe::UProbeAttachLocation<'a>
  6833. impl<'a> core::marker::Sync for aya::programs::uprobe::UProbeAttachLocation<'a>
  6834. impl<'a> core::marker::Unpin for aya::programs::uprobe::UProbeAttachLocation<'a>
  6835. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6836. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeAttachLocation<'a>
  6837. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::From<T>
  6838. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::into(self) -> U
  6839. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::Into<T>
  6840. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = core::convert::Infallible
  6841. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6842. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeAttachLocation<'a> where U: core::convert::TryFrom<T>
  6843. pub type aya::programs::uprobe::UProbeAttachLocation<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  6844. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6845. impl<T> core::any::Any for aya::programs::uprobe::UProbeAttachLocation<'a> where T: 'static + ?core::marker::Sized
  6846. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::type_id(&self) -> core::any::TypeId
  6847. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6848. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow(&self) -> &T
  6849. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeAttachLocation<'a> where T: ?core::marker::Sized
  6850. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::borrow_mut(&mut self) -> &mut T
  6851. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeAttachLocation<'a>
  6852. pub fn aya::programs::uprobe::UProbeAttachLocation<'a>::from(t: T) -> T
  6853. pub enum aya::programs::uprobe::UProbeError
  6854. pub aya::programs::uprobe::UProbeError::FileError
  6855. pub aya::programs::uprobe::UProbeError::FileError::filename: std::path::PathBuf
  6856. pub aya::programs::uprobe::UProbeError::FileError::io_error: std::io::error::Error
  6857. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache
  6858. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  6859. pub aya::programs::uprobe::UProbeError::InvalidTarget
  6860. pub aya::programs::uprobe::UProbeError::InvalidTarget::path: std::path::PathBuf
  6861. pub aya::programs::uprobe::UProbeError::ProcMap
  6862. pub aya::programs::uprobe::UProbeError::ProcMap::pid: i32
  6863. pub aya::programs::uprobe::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  6864. pub aya::programs::uprobe::UProbeError::SymbolError
  6865. pub aya::programs::uprobe::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  6866. pub aya::programs::uprobe::UProbeError::SymbolError::symbol: alloc::string::String
  6867. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  6868. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  6869. impl core::error::Error for aya::programs::uprobe::UProbeError
  6870. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  6871. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  6872. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6873. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  6874. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6875. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  6876. impl core::marker::Send for aya::programs::uprobe::UProbeError
  6877. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  6878. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  6879. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  6880. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  6881. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  6882. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  6883. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  6884. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  6885. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6886. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  6887. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  6888. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6889. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  6890. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  6891. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  6892. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  6893. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  6894. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  6895. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  6896. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  6897. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  6898. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  6899. pub struct aya::programs::uprobe::UProbe
  6900. impl aya::programs::uprobe::UProbe
  6901. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  6902. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  6903. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  6904. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  6905. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6906. impl aya::programs::uprobe::UProbe
  6907. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6908. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  6909. impl aya::programs::uprobe::UProbe
  6910. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6911. impl aya::programs::uprobe::UProbe
  6912. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  6913. impl aya::programs::uprobe::UProbe
  6914. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6915. impl aya::programs::uprobe::UProbe
  6916. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6917. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6918. impl aya::programs::uprobe::UProbe
  6919. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6920. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  6921. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6922. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  6923. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  6924. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  6925. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  6926. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  6927. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  6928. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  6929. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  6930. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  6931. impl core::marker::Send for aya::programs::uprobe::UProbe
  6932. impl core::marker::Sync for aya::programs::uprobe::UProbe
  6933. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  6934. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  6935. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  6936. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  6937. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  6938. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  6939. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  6940. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6941. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  6942. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  6943. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6944. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  6945. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  6946. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  6947. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  6948. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  6949. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  6950. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  6951. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  6952. pub struct aya::programs::uprobe::UProbeLink(_)
  6953. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  6954. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  6955. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  6956. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  6957. impl core::cmp::Eq for aya::programs::uprobe::UProbeLink
  6958. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLink
  6959. pub fn aya::programs::uprobe::UProbeLink::eq(&self, other: &Self) -> bool
  6960. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  6961. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  6962. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  6963. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  6964. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  6965. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  6966. impl core::fmt::Debug for aya::programs::uprobe::UProbeLink
  6967. pub fn aya::programs::uprobe::UProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6968. impl core::hash::Hash for aya::programs::uprobe::UProbeLink
  6969. pub fn aya::programs::uprobe::UProbeLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  6970. impl core::ops::drop::Drop for aya::programs::uprobe::UProbeLink
  6971. pub fn aya::programs::uprobe::UProbeLink::drop(&mut self)
  6972. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  6973. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  6974. impl core::marker::Freeze for aya::programs::uprobe::UProbeLink
  6975. impl core::marker::Send for aya::programs::uprobe::UProbeLink
  6976. impl core::marker::Sync for aya::programs::uprobe::UProbeLink
  6977. impl core::marker::Unpin for aya::programs::uprobe::UProbeLink
  6978. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLink
  6979. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLink
  6980. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  6981. pub fn aya::programs::uprobe::UProbeLink::equivalent(&self, key: &K) -> bool
  6982. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLink where U: core::convert::From<T>
  6983. pub fn aya::programs::uprobe::UProbeLink::into(self) -> U
  6984. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLink where U: core::convert::Into<T>
  6985. pub type aya::programs::uprobe::UProbeLink::Error = core::convert::Infallible
  6986. pub fn aya::programs::uprobe::UProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6987. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLink where U: core::convert::TryFrom<T>
  6988. pub type aya::programs::uprobe::UProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  6989. pub fn aya::programs::uprobe::UProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6990. impl<T> core::any::Any for aya::programs::uprobe::UProbeLink where T: 'static + ?core::marker::Sized
  6991. pub fn aya::programs::uprobe::UProbeLink::type_id(&self) -> core::any::TypeId
  6992. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  6993. pub fn aya::programs::uprobe::UProbeLink::borrow(&self) -> &T
  6994. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLink where T: ?core::marker::Sized
  6995. pub fn aya::programs::uprobe::UProbeLink::borrow_mut(&mut self) -> &mut T
  6996. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLink
  6997. pub fn aya::programs::uprobe::UProbeLink::from(t: T) -> T
  6998. pub struct aya::programs::uprobe::UProbeLinkId(_)
  6999. impl core::cmp::Eq for aya::programs::uprobe::UProbeLinkId
  7000. impl core::cmp::PartialEq for aya::programs::uprobe::UProbeLinkId
  7001. pub fn aya::programs::uprobe::UProbeLinkId::eq(&self, other: &aya::programs::uprobe::UProbeLinkId) -> bool
  7002. impl core::fmt::Debug for aya::programs::uprobe::UProbeLinkId
  7003. pub fn aya::programs::uprobe::UProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7004. impl core::hash::Hash for aya::programs::uprobe::UProbeLinkId
  7005. pub fn aya::programs::uprobe::UProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7006. impl core::marker::StructuralPartialEq for aya::programs::uprobe::UProbeLinkId
  7007. impl equivalent::Equivalent<aya::programs::uprobe::UProbeLink> for aya::programs::uprobe::UProbeLinkId
  7008. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &aya::programs::uprobe::UProbeLink) -> bool
  7009. impl core::marker::Freeze for aya::programs::uprobe::UProbeLinkId
  7010. impl core::marker::Send for aya::programs::uprobe::UProbeLinkId
  7011. impl core::marker::Sync for aya::programs::uprobe::UProbeLinkId
  7012. impl core::marker::Unpin for aya::programs::uprobe::UProbeLinkId
  7013. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLinkId
  7014. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLinkId
  7015. impl<Q, K> equivalent::Equivalent<K> for aya::programs::uprobe::UProbeLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7016. pub fn aya::programs::uprobe::UProbeLinkId::equivalent(&self, key: &K) -> bool
  7017. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::From<T>
  7018. pub fn aya::programs::uprobe::UProbeLinkId::into(self) -> U
  7019. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::Into<T>
  7020. pub type aya::programs::uprobe::UProbeLinkId::Error = core::convert::Infallible
  7021. pub fn aya::programs::uprobe::UProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7022. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::TryFrom<T>
  7023. pub type aya::programs::uprobe::UProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7024. pub fn aya::programs::uprobe::UProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7025. impl<T> core::any::Any for aya::programs::uprobe::UProbeLinkId where T: 'static + ?core::marker::Sized
  7026. pub fn aya::programs::uprobe::UProbeLinkId::type_id(&self) -> core::any::TypeId
  7027. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7028. pub fn aya::programs::uprobe::UProbeLinkId::borrow(&self) -> &T
  7029. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLinkId where T: ?core::marker::Sized
  7030. pub fn aya::programs::uprobe::UProbeLinkId::borrow_mut(&mut self) -> &mut T
  7031. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLinkId
  7032. pub fn aya::programs::uprobe::UProbeLinkId::from(t: T) -> T
  7033. pub mod aya::programs::xdp
  7034. pub enum aya::programs::xdp::XdpError
  7035. pub aya::programs::xdp::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  7036. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7037. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7038. impl core::error::Error for aya::programs::xdp::XdpError
  7039. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7040. impl core::fmt::Debug for aya::programs::xdp::XdpError
  7041. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7042. impl core::fmt::Display for aya::programs::xdp::XdpError
  7043. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7044. impl core::marker::Freeze for aya::programs::xdp::XdpError
  7045. impl core::marker::Send for aya::programs::xdp::XdpError
  7046. impl core::marker::Sync for aya::programs::xdp::XdpError
  7047. impl core::marker::Unpin for aya::programs::xdp::XdpError
  7048. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  7049. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  7050. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  7051. pub fn aya::programs::xdp::XdpError::into(self) -> U
  7052. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  7053. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  7054. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7055. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  7056. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  7057. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7058. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  7059. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  7060. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  7061. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  7062. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7063. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  7064. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  7065. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  7066. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  7067. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  7068. pub struct aya::programs::xdp::Xdp
  7069. impl aya::programs::xdp::Xdp
  7070. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  7071. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7072. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7073. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7074. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7075. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7076. impl aya::programs::xdp::Xdp
  7077. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7078. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  7079. impl aya::programs::xdp::Xdp
  7080. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7081. impl aya::programs::xdp::Xdp
  7082. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7083. impl aya::programs::xdp::Xdp
  7084. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7085. impl aya::programs::xdp::Xdp
  7086. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7087. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7088. impl aya::programs::xdp::Xdp
  7089. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7090. impl core::fmt::Debug for aya::programs::xdp::Xdp
  7091. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7092. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  7093. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  7094. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7095. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7096. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7097. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7098. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7099. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7100. impl core::marker::Freeze for aya::programs::xdp::Xdp
  7101. impl core::marker::Send for aya::programs::xdp::Xdp
  7102. impl core::marker::Sync for aya::programs::xdp::Xdp
  7103. impl core::marker::Unpin for aya::programs::xdp::Xdp
  7104. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  7105. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  7106. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  7107. pub fn aya::programs::xdp::Xdp::into(self) -> U
  7108. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  7109. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  7110. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7111. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  7112. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  7113. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7114. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  7115. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  7116. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7117. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  7118. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  7119. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  7120. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  7121. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  7122. pub struct aya::programs::xdp::XdpFlags(_)
  7123. impl aya::programs::xdp::XdpFlags
  7124. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  7125. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  7126. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  7127. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  7128. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  7129. impl aya::programs::xdp::XdpFlags
  7130. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  7131. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7132. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  7133. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  7134. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  7135. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  7136. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  7137. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  7138. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  7139. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  7140. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  7141. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  7142. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  7143. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  7144. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  7145. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  7146. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  7147. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  7148. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  7149. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  7150. impl aya::programs::xdp::XdpFlags
  7151. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7152. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  7153. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  7154. pub type aya::programs::xdp::XdpFlags::Bits = u32
  7155. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  7156. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7157. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  7158. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  7159. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  7160. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  7161. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  7162. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  7163. impl core::default::Default for aya::programs::xdp::XdpFlags
  7164. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  7165. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  7166. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7167. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  7168. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7169. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  7170. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7171. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  7172. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7173. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  7174. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7175. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7176. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7177. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7178. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7179. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  7180. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7181. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  7182. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  7183. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  7184. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  7185. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7186. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  7187. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  7188. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  7189. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  7190. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7191. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  7192. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  7193. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  7194. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  7195. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7196. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  7197. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  7198. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  7199. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  7200. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7201. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  7202. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  7203. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  7204. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  7205. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7206. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  7207. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  7208. impl core::marker::Send for aya::programs::xdp::XdpFlags
  7209. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  7210. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  7211. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  7212. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  7213. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  7214. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  7215. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  7216. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  7217. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7218. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  7219. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  7220. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7221. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7222. pub type aya::programs::xdp::XdpFlags::Owned = T
  7223. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  7224. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  7225. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  7226. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  7227. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7228. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  7229. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  7230. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  7231. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7232. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  7233. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  7234. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  7235. pub struct aya::programs::xdp::XdpLink(_)
  7236. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  7237. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  7238. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7239. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  7240. impl core::cmp::Eq for aya::programs::xdp::XdpLink
  7241. impl core::cmp::PartialEq for aya::programs::xdp::XdpLink
  7242. pub fn aya::programs::xdp::XdpLink::eq(&self, other: &Self) -> bool
  7243. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  7244. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  7245. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  7246. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  7247. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  7248. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  7249. impl core::fmt::Debug for aya::programs::xdp::XdpLink
  7250. pub fn aya::programs::xdp::XdpLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7251. impl core::hash::Hash for aya::programs::xdp::XdpLink
  7252. pub fn aya::programs::xdp::XdpLink::hash<H: core::hash::Hasher>(&self, state: &mut H)
  7253. impl core::ops::drop::Drop for aya::programs::xdp::XdpLink
  7254. pub fn aya::programs::xdp::XdpLink::drop(&mut self)
  7255. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7256. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7257. impl core::marker::Freeze for aya::programs::xdp::XdpLink
  7258. impl core::marker::Send for aya::programs::xdp::XdpLink
  7259. impl core::marker::Sync for aya::programs::xdp::XdpLink
  7260. impl core::marker::Unpin for aya::programs::xdp::XdpLink
  7261. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLink
  7262. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLink
  7263. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLink where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7264. pub fn aya::programs::xdp::XdpLink::equivalent(&self, key: &K) -> bool
  7265. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLink where U: core::convert::From<T>
  7266. pub fn aya::programs::xdp::XdpLink::into(self) -> U
  7267. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLink where U: core::convert::Into<T>
  7268. pub type aya::programs::xdp::XdpLink::Error = core::convert::Infallible
  7269. pub fn aya::programs::xdp::XdpLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7270. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLink where U: core::convert::TryFrom<T>
  7271. pub type aya::programs::xdp::XdpLink::Error = <U as core::convert::TryFrom<T>>::Error
  7272. pub fn aya::programs::xdp::XdpLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7273. impl<T> core::any::Any for aya::programs::xdp::XdpLink where T: 'static + ?core::marker::Sized
  7274. pub fn aya::programs::xdp::XdpLink::type_id(&self) -> core::any::TypeId
  7275. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7276. pub fn aya::programs::xdp::XdpLink::borrow(&self) -> &T
  7277. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLink where T: ?core::marker::Sized
  7278. pub fn aya::programs::xdp::XdpLink::borrow_mut(&mut self) -> &mut T
  7279. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLink
  7280. pub fn aya::programs::xdp::XdpLink::from(t: T) -> T
  7281. pub struct aya::programs::xdp::XdpLinkId(_)
  7282. impl core::cmp::Eq for aya::programs::xdp::XdpLinkId
  7283. impl core::cmp::PartialEq for aya::programs::xdp::XdpLinkId
  7284. pub fn aya::programs::xdp::XdpLinkId::eq(&self, other: &aya::programs::xdp::XdpLinkId) -> bool
  7285. impl core::fmt::Debug for aya::programs::xdp::XdpLinkId
  7286. pub fn aya::programs::xdp::XdpLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7287. impl core::hash::Hash for aya::programs::xdp::XdpLinkId
  7288. pub fn aya::programs::xdp::XdpLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  7289. impl core::marker::StructuralPartialEq for aya::programs::xdp::XdpLinkId
  7290. impl equivalent::Equivalent<aya::programs::xdp::XdpLink> for aya::programs::xdp::XdpLinkId
  7291. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &aya::programs::xdp::XdpLink) -> bool
  7292. impl core::marker::Freeze for aya::programs::xdp::XdpLinkId
  7293. impl core::marker::Send for aya::programs::xdp::XdpLinkId
  7294. impl core::marker::Sync for aya::programs::xdp::XdpLinkId
  7295. impl core::marker::Unpin for aya::programs::xdp::XdpLinkId
  7296. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLinkId
  7297. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLinkId
  7298. impl<Q, K> equivalent::Equivalent<K> for aya::programs::xdp::XdpLinkId where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  7299. pub fn aya::programs::xdp::XdpLinkId::equivalent(&self, key: &K) -> bool
  7300. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLinkId where U: core::convert::From<T>
  7301. pub fn aya::programs::xdp::XdpLinkId::into(self) -> U
  7302. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLinkId where U: core::convert::Into<T>
  7303. pub type aya::programs::xdp::XdpLinkId::Error = core::convert::Infallible
  7304. pub fn aya::programs::xdp::XdpLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7305. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLinkId where U: core::convert::TryFrom<T>
  7306. pub type aya::programs::xdp::XdpLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  7307. pub fn aya::programs::xdp::XdpLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7308. impl<T> core::any::Any for aya::programs::xdp::XdpLinkId where T: 'static + ?core::marker::Sized
  7309. pub fn aya::programs::xdp::XdpLinkId::type_id(&self) -> core::any::TypeId
  7310. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7311. pub fn aya::programs::xdp::XdpLinkId::borrow(&self) -> &T
  7312. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLinkId where T: ?core::marker::Sized
  7313. pub fn aya::programs::xdp::XdpLinkId::borrow_mut(&mut self) -> &mut T
  7314. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLinkId
  7315. pub fn aya::programs::xdp::XdpLinkId::from(t: T) -> T
  7316. pub enum aya::programs::CgroupAttachMode
  7317. pub aya::programs::CgroupAttachMode::AllowMultiple
  7318. pub aya::programs::CgroupAttachMode::AllowOverride
  7319. pub aya::programs::CgroupAttachMode::Single
  7320. impl core::clone::Clone for aya::programs::links::CgroupAttachMode
  7321. pub fn aya::programs::links::CgroupAttachMode::clone(&self) -> aya::programs::links::CgroupAttachMode
  7322. impl core::convert::From<aya::programs::links::CgroupAttachMode> for u32
  7323. pub fn u32::from(mode: aya::programs::links::CgroupAttachMode) -> Self
  7324. impl core::default::Default for aya::programs::links::CgroupAttachMode
  7325. pub fn aya::programs::links::CgroupAttachMode::default() -> aya::programs::links::CgroupAttachMode
  7326. impl core::fmt::Debug for aya::programs::links::CgroupAttachMode
  7327. pub fn aya::programs::links::CgroupAttachMode::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7328. impl core::marker::Copy for aya::programs::links::CgroupAttachMode
  7329. impl core::marker::Freeze for aya::programs::links::CgroupAttachMode
  7330. impl core::marker::Send for aya::programs::links::CgroupAttachMode
  7331. impl core::marker::Sync for aya::programs::links::CgroupAttachMode
  7332. impl core::marker::Unpin for aya::programs::links::CgroupAttachMode
  7333. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::CgroupAttachMode
  7334. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::CgroupAttachMode
  7335. impl<T, U> core::convert::Into<U> for aya::programs::links::CgroupAttachMode where U: core::convert::From<T>
  7336. pub fn aya::programs::links::CgroupAttachMode::into(self) -> U
  7337. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::CgroupAttachMode where U: core::convert::Into<T>
  7338. pub type aya::programs::links::CgroupAttachMode::Error = core::convert::Infallible
  7339. pub fn aya::programs::links::CgroupAttachMode::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7340. impl<T, U> core::convert::TryInto<U> for aya::programs::links::CgroupAttachMode where U: core::convert::TryFrom<T>
  7341. pub type aya::programs::links::CgroupAttachMode::Error = <U as core::convert::TryFrom<T>>::Error
  7342. pub fn aya::programs::links::CgroupAttachMode::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7343. impl<T> alloc::borrow::ToOwned for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7344. pub type aya::programs::links::CgroupAttachMode::Owned = T
  7345. pub fn aya::programs::links::CgroupAttachMode::clone_into(&self, target: &mut T)
  7346. pub fn aya::programs::links::CgroupAttachMode::to_owned(&self) -> T
  7347. impl<T> core::any::Any for aya::programs::links::CgroupAttachMode where T: 'static + ?core::marker::Sized
  7348. pub fn aya::programs::links::CgroupAttachMode::type_id(&self) -> core::any::TypeId
  7349. impl<T> core::borrow::Borrow<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7350. pub fn aya::programs::links::CgroupAttachMode::borrow(&self) -> &T
  7351. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::CgroupAttachMode where T: ?core::marker::Sized
  7352. pub fn aya::programs::links::CgroupAttachMode::borrow_mut(&mut self) -> &mut T
  7353. impl<T> core::clone::CloneToUninit for aya::programs::links::CgroupAttachMode where T: core::clone::Clone
  7354. pub unsafe fn aya::programs::links::CgroupAttachMode::clone_to_uninit(&self, dest: *mut u8)
  7355. impl<T> core::convert::From<T> for aya::programs::links::CgroupAttachMode
  7356. pub fn aya::programs::links::CgroupAttachMode::from(t: T) -> T
  7357. pub enum aya::programs::CgroupSkbAttachType
  7358. pub aya::programs::CgroupSkbAttachType::Egress
  7359. pub aya::programs::CgroupSkbAttachType::Ingress
  7360. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  7361. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  7362. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  7363. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7364. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  7365. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkbAttachType
  7366. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  7367. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  7368. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  7369. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7370. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  7371. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  7372. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  7373. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  7374. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  7375. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7376. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  7377. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7378. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7379. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7380. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  7381. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  7382. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  7383. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + ?core::marker::Sized
  7384. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  7385. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7386. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  7387. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: ?core::marker::Sized
  7388. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  7389. impl<T> core::clone::CloneToUninit for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  7390. pub unsafe fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_to_uninit(&self, dest: *mut u8)
  7391. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  7392. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  7393. pub enum aya::programs::ExtensionError
  7394. pub aya::programs::ExtensionError::NoBTF
  7395. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7396. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7397. impl core::error::Error for aya::programs::extension::ExtensionError
  7398. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  7399. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7400. impl core::fmt::Display for aya::programs::extension::ExtensionError
  7401. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7402. impl core::marker::Freeze for aya::programs::extension::ExtensionError
  7403. impl core::marker::Send for aya::programs::extension::ExtensionError
  7404. impl core::marker::Sync for aya::programs::extension::ExtensionError
  7405. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  7406. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  7407. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  7408. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  7409. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  7410. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  7411. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  7412. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7413. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  7414. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  7415. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7416. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + ?core::marker::Sized
  7417. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  7418. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + ?core::marker::Sized
  7419. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  7420. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7421. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  7422. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: ?core::marker::Sized
  7423. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  7424. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  7425. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  7426. pub enum aya::programs::KProbeError
  7427. pub aya::programs::KProbeError::FileError
  7428. pub aya::programs::KProbeError::FileError::filename: std::path::PathBuf
  7429. pub aya::programs::KProbeError::FileError::io_error: std::io::error::Error
  7430. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7431. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7432. impl core::error::Error for aya::programs::kprobe::KProbeError
  7433. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7434. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  7435. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7436. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  7437. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7438. impl core::marker::Freeze for aya::programs::kprobe::KProbeError
  7439. impl core::marker::Send for aya::programs::kprobe::KProbeError
  7440. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  7441. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  7442. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  7443. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  7444. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  7445. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  7446. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  7447. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  7448. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7449. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  7450. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  7451. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7452. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + ?core::marker::Sized
  7453. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  7454. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + ?core::marker::Sized
  7455. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  7456. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7457. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  7458. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: ?core::marker::Sized
  7459. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  7460. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  7461. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  7462. pub enum aya::programs::PerfEventScope
  7463. pub aya::programs::PerfEventScope::AllProcessesOneCpu
  7464. pub aya::programs::PerfEventScope::AllProcessesOneCpu::cpu: u32
  7465. pub aya::programs::PerfEventScope::CallingProcessAnyCpu
  7466. pub aya::programs::PerfEventScope::CallingProcessOneCpu
  7467. pub aya::programs::PerfEventScope::CallingProcessOneCpu::cpu: u32
  7468. pub aya::programs::PerfEventScope::OneProcessAnyCpu
  7469. pub aya::programs::PerfEventScope::OneProcessAnyCpu::pid: u32
  7470. pub aya::programs::PerfEventScope::OneProcessOneCpu
  7471. pub aya::programs::PerfEventScope::OneProcessOneCpu::cpu: u32
  7472. pub aya::programs::PerfEventScope::OneProcessOneCpu::pid: u32
  7473. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  7474. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  7475. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  7476. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7477. impl core::marker::Freeze for aya::programs::perf_event::PerfEventScope
  7478. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  7479. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  7480. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  7481. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  7482. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  7483. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  7484. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  7485. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  7486. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  7487. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7488. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  7489. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  7490. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7491. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7492. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  7493. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  7494. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  7495. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + ?core::marker::Sized
  7496. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  7497. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7498. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  7499. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: ?core::marker::Sized
  7500. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  7501. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  7502. pub unsafe fn aya::programs::perf_event::PerfEventScope::clone_to_uninit(&self, dest: *mut u8)
  7503. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  7504. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  7505. #[repr(u32)] pub enum aya::programs::PerfTypeId
  7506. pub aya::programs::PerfTypeId::Breakpoint = 5
  7507. pub aya::programs::PerfTypeId::Hardware = 0
  7508. pub aya::programs::PerfTypeId::HwCache = 3
  7509. pub aya::programs::PerfTypeId::Raw = 4
  7510. pub aya::programs::PerfTypeId::Software = 1
  7511. pub aya::programs::PerfTypeId::TracePoint = 2
  7512. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  7513. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  7514. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  7515. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7516. impl core::marker::Freeze for aya::programs::perf_event::PerfTypeId
  7517. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  7518. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  7519. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  7520. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  7521. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  7522. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  7523. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  7524. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  7525. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  7526. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7527. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  7528. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  7529. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7530. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7531. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  7532. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  7533. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  7534. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + ?core::marker::Sized
  7535. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  7536. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7537. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  7538. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: ?core::marker::Sized
  7539. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  7540. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  7541. pub unsafe fn aya::programs::perf_event::PerfTypeId::clone_to_uninit(&self, dest: *mut u8)
  7542. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  7543. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  7544. pub enum aya::programs::ProbeKind
  7545. pub aya::programs::ProbeKind::KProbe
  7546. pub aya::programs::ProbeKind::KRetProbe
  7547. pub aya::programs::ProbeKind::UProbe
  7548. pub aya::programs::ProbeKind::URetProbe
  7549. impl core::clone::Clone for aya::programs::ProbeKind
  7550. pub fn aya::programs::ProbeKind::clone(&self) -> aya::programs::ProbeKind
  7551. impl core::fmt::Debug for aya::programs::ProbeKind
  7552. pub fn aya::programs::ProbeKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7553. impl core::marker::Copy for aya::programs::ProbeKind
  7554. impl core::marker::Freeze for aya::programs::ProbeKind
  7555. impl core::marker::Send for aya::programs::ProbeKind
  7556. impl core::marker::Sync for aya::programs::ProbeKind
  7557. impl core::marker::Unpin for aya::programs::ProbeKind
  7558. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProbeKind
  7559. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProbeKind
  7560. impl<T, U> core::convert::Into<U> for aya::programs::ProbeKind where U: core::convert::From<T>
  7561. pub fn aya::programs::ProbeKind::into(self) -> U
  7562. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProbeKind where U: core::convert::Into<T>
  7563. pub type aya::programs::ProbeKind::Error = core::convert::Infallible
  7564. pub fn aya::programs::ProbeKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7565. impl<T, U> core::convert::TryInto<U> for aya::programs::ProbeKind where U: core::convert::TryFrom<T>
  7566. pub type aya::programs::ProbeKind::Error = <U as core::convert::TryFrom<T>>::Error
  7567. pub fn aya::programs::ProbeKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7568. impl<T> alloc::borrow::ToOwned for aya::programs::ProbeKind where T: core::clone::Clone
  7569. pub type aya::programs::ProbeKind::Owned = T
  7570. pub fn aya::programs::ProbeKind::clone_into(&self, target: &mut T)
  7571. pub fn aya::programs::ProbeKind::to_owned(&self) -> T
  7572. impl<T> core::any::Any for aya::programs::ProbeKind where T: 'static + ?core::marker::Sized
  7573. pub fn aya::programs::ProbeKind::type_id(&self) -> core::any::TypeId
  7574. impl<T> core::borrow::Borrow<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7575. pub fn aya::programs::ProbeKind::borrow(&self) -> &T
  7576. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProbeKind where T: ?core::marker::Sized
  7577. pub fn aya::programs::ProbeKind::borrow_mut(&mut self) -> &mut T
  7578. impl<T> core::clone::CloneToUninit for aya::programs::ProbeKind where T: core::clone::Clone
  7579. pub unsafe fn aya::programs::ProbeKind::clone_to_uninit(&self, dest: *mut u8)
  7580. impl<T> core::convert::From<T> for aya::programs::ProbeKind
  7581. pub fn aya::programs::ProbeKind::from(t: T) -> T
  7582. pub enum aya::programs::Program
  7583. pub aya::programs::Program::BtfTracePoint(aya::programs::tp_btf::BtfTracePoint)
  7584. pub aya::programs::Program::CgroupDevice(aya::programs::cgroup_device::CgroupDevice)
  7585. pub aya::programs::Program::CgroupSkb(aya::programs::cgroup_skb::CgroupSkb)
  7586. pub aya::programs::Program::CgroupSock(aya::programs::cgroup_sock::CgroupSock)
  7587. pub aya::programs::Program::CgroupSockAddr(aya::programs::cgroup_sock_addr::CgroupSockAddr)
  7588. pub aya::programs::Program::CgroupSockopt(aya::programs::cgroup_sockopt::CgroupSockopt)
  7589. pub aya::programs::Program::CgroupSysctl(aya::programs::cgroup_sysctl::CgroupSysctl)
  7590. pub aya::programs::Program::Extension(aya::programs::extension::Extension)
  7591. pub aya::programs::Program::FEntry(aya::programs::fentry::FEntry)
  7592. pub aya::programs::Program::FExit(aya::programs::fexit::FExit)
  7593. pub aya::programs::Program::FlowDissector(aya::programs::flow_dissector::FlowDissector)
  7594. pub aya::programs::Program::Iter(aya::programs::iter::Iter)
  7595. pub aya::programs::Program::KProbe(aya::programs::kprobe::KProbe)
  7596. pub aya::programs::Program::LircMode2(aya::programs::lirc_mode2::LircMode2)
  7597. pub aya::programs::Program::Lsm(aya::programs::lsm::Lsm)
  7598. pub aya::programs::Program::PerfEvent(aya::programs::perf_event::PerfEvent)
  7599. pub aya::programs::Program::RawTracePoint(aya::programs::raw_trace_point::RawTracePoint)
  7600. pub aya::programs::Program::SchedClassifier(aya::programs::tc::SchedClassifier)
  7601. pub aya::programs::Program::SkLookup(aya::programs::sk_lookup::SkLookup)
  7602. pub aya::programs::Program::SkMsg(aya::programs::sk_msg::SkMsg)
  7603. pub aya::programs::Program::SkSkb(aya::programs::sk_skb::SkSkb)
  7604. pub aya::programs::Program::SockOps(aya::programs::sock_ops::SockOps)
  7605. pub aya::programs::Program::SocketFilter(aya::programs::socket_filter::SocketFilter)
  7606. pub aya::programs::Program::TracePoint(aya::programs::trace_point::TracePoint)
  7607. pub aya::programs::Program::UProbe(aya::programs::uprobe::UProbe)
  7608. pub aya::programs::Program::Xdp(aya::programs::xdp::Xdp)
  7609. impl aya::programs::Program
  7610. pub fn aya::programs::Program::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7611. pub fn aya::programs::Program::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7612. pub fn aya::programs::Program::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7613. pub fn aya::programs::Program::prog_type(&self) -> aya::programs::ProgramType
  7614. pub fn aya::programs::Program::unload(self) -> core::result::Result<(), aya::programs::ProgramError>
  7615. impl core::fmt::Debug for aya::programs::Program
  7616. pub fn aya::programs::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7617. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  7618. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7619. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  7620. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  7621. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7622. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  7623. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  7624. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7625. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  7626. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  7627. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7628. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  7629. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  7630. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7631. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  7632. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  7633. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7634. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  7635. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  7636. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7637. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  7638. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  7639. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7640. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  7641. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  7642. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7643. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  7644. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  7645. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7646. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7647. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  7648. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7649. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  7650. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  7651. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7652. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  7653. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  7654. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7655. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  7656. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  7657. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7658. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  7659. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  7660. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7661. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  7662. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  7663. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7664. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7665. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  7666. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7667. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7668. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  7669. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7670. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7671. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  7672. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7673. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7674. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  7675. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7676. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7677. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  7678. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7679. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7680. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  7681. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7682. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  7683. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  7684. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7685. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  7686. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  7687. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7688. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7689. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7690. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7691. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7692. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7693. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7694. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7695. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  7696. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  7697. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  7698. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  7699. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  7700. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  7701. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  7702. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  7703. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  7704. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  7705. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  7706. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  7707. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  7708. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  7709. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  7710. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  7711. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  7712. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  7713. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  7714. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  7715. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  7716. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  7717. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  7718. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  7719. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  7720. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  7721. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  7722. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  7723. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  7724. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  7725. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  7726. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  7727. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  7728. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  7729. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  7730. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  7731. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  7732. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  7733. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  7734. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  7735. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  7736. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  7737. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  7738. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  7739. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  7740. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  7741. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  7742. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  7743. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  7744. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  7745. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  7746. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  7747. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  7748. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  7749. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  7750. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  7751. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  7752. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  7753. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  7754. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  7755. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  7756. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  7757. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  7758. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  7759. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  7760. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  7761. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  7762. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  7763. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  7764. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  7765. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7766. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7767. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7768. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7769. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7770. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7771. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7772. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7773. impl core::marker::Freeze for aya::programs::Program
  7774. impl core::marker::Send for aya::programs::Program
  7775. impl core::marker::Sync for aya::programs::Program
  7776. impl core::marker::Unpin for aya::programs::Program
  7777. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::Program
  7778. impl core::panic::unwind_safe::UnwindSafe for aya::programs::Program
  7779. impl<T, U> core::convert::Into<U> for aya::programs::Program where U: core::convert::From<T>
  7780. pub fn aya::programs::Program::into(self) -> U
  7781. impl<T, U> core::convert::TryFrom<U> for aya::programs::Program where U: core::convert::Into<T>
  7782. pub type aya::programs::Program::Error = core::convert::Infallible
  7783. pub fn aya::programs::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7784. impl<T, U> core::convert::TryInto<U> for aya::programs::Program where U: core::convert::TryFrom<T>
  7785. pub type aya::programs::Program::Error = <U as core::convert::TryFrom<T>>::Error
  7786. pub fn aya::programs::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7787. impl<T> core::any::Any for aya::programs::Program where T: 'static + ?core::marker::Sized
  7788. pub fn aya::programs::Program::type_id(&self) -> core::any::TypeId
  7789. impl<T> core::borrow::Borrow<T> for aya::programs::Program where T: ?core::marker::Sized
  7790. pub fn aya::programs::Program::borrow(&self) -> &T
  7791. impl<T> core::borrow::BorrowMut<T> for aya::programs::Program where T: ?core::marker::Sized
  7792. pub fn aya::programs::Program::borrow_mut(&mut self) -> &mut T
  7793. impl<T> core::convert::From<T> for aya::programs::Program
  7794. pub fn aya::programs::Program::from(t: T) -> T
  7795. pub enum aya::programs::ProgramError
  7796. pub aya::programs::ProgramError::AlreadyAttached
  7797. pub aya::programs::ProgramError::AlreadyLoaded
  7798. pub aya::programs::ProgramError::AttachCookieNotSupported
  7799. pub aya::programs::ProgramError::Btf(aya_obj::btf::btf::BtfError)
  7800. pub aya::programs::ProgramError::ExtensionError(aya::programs::extension::ExtensionError)
  7801. pub aya::programs::ProgramError::IOError(std::io::error::Error)
  7802. pub aya::programs::ProgramError::InvalidName
  7803. pub aya::programs::ProgramError::InvalidName::name: alloc::string::String
  7804. pub aya::programs::ProgramError::KProbeError(aya::programs::kprobe::KProbeError)
  7805. pub aya::programs::ProgramError::LoadError
  7806. pub aya::programs::ProgramError::LoadError::io_error: std::io::error::Error
  7807. pub aya::programs::ProgramError::LoadError::verifier_log: aya_obj::VerifierLog
  7808. pub aya::programs::ProgramError::MapError(aya::maps::MapError)
  7809. pub aya::programs::ProgramError::NetlinkError(aya::sys::netlink::NetlinkError)
  7810. pub aya::programs::ProgramError::NotAttached
  7811. pub aya::programs::ProgramError::NotLoaded
  7812. pub aya::programs::ProgramError::SocketFilterError(aya::programs::socket_filter::SocketFilterError)
  7813. pub aya::programs::ProgramError::SyscallError(aya::sys::SyscallError)
  7814. pub aya::programs::ProgramError::TcError(aya::programs::tc::TcError)
  7815. pub aya::programs::ProgramError::TracePointError(aya::programs::trace_point::TracePointError)
  7816. pub aya::programs::ProgramError::UProbeError(aya::programs::uprobe::UProbeError)
  7817. pub aya::programs::ProgramError::UnexpectedProgramType
  7818. pub aya::programs::ProgramError::UnknownInterface
  7819. pub aya::programs::ProgramError::UnknownInterface::name: alloc::string::String
  7820. pub aya::programs::ProgramError::XdpError(aya::programs::xdp::XdpError)
  7821. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  7822. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  7823. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  7824. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  7825. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  7826. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  7827. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  7828. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  7829. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  7830. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  7831. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  7832. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  7833. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  7834. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  7835. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  7836. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  7837. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  7838. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  7839. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  7840. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  7841. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::programs::ProgramError
  7842. pub fn aya::programs::ProgramError::from(source: aya_obj::btf::btf::BtfError) -> Self
  7843. impl core::convert::From<std::io::error::Error> for aya::programs::ProgramError
  7844. pub fn aya::programs::ProgramError::from(source: std::io::error::Error) -> Self
  7845. impl core::error::Error for aya::programs::ProgramError
  7846. pub fn aya::programs::ProgramError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7847. impl core::fmt::Debug for aya::programs::ProgramError
  7848. pub fn aya::programs::ProgramError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7849. impl core::fmt::Display for aya::programs::ProgramError
  7850. pub fn aya::programs::ProgramError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7851. impl core::marker::Freeze for aya::programs::ProgramError
  7852. impl core::marker::Send for aya::programs::ProgramError
  7853. impl core::marker::Sync for aya::programs::ProgramError
  7854. impl core::marker::Unpin for aya::programs::ProgramError
  7855. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramError
  7856. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramError
  7857. impl<T, U> core::convert::Into<U> for aya::programs::ProgramError where U: core::convert::From<T>
  7858. pub fn aya::programs::ProgramError::into(self) -> U
  7859. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramError where U: core::convert::Into<T>
  7860. pub type aya::programs::ProgramError::Error = core::convert::Infallible
  7861. pub fn aya::programs::ProgramError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7862. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramError where U: core::convert::TryFrom<T>
  7863. pub type aya::programs::ProgramError::Error = <U as core::convert::TryFrom<T>>::Error
  7864. pub fn aya::programs::ProgramError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7865. impl<T> alloc::string::ToString for aya::programs::ProgramError where T: core::fmt::Display + ?core::marker::Sized
  7866. pub fn aya::programs::ProgramError::to_string(&self) -> alloc::string::String
  7867. impl<T> core::any::Any for aya::programs::ProgramError where T: 'static + ?core::marker::Sized
  7868. pub fn aya::programs::ProgramError::type_id(&self) -> core::any::TypeId
  7869. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7870. pub fn aya::programs::ProgramError::borrow(&self) -> &T
  7871. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramError where T: ?core::marker::Sized
  7872. pub fn aya::programs::ProgramError::borrow_mut(&mut self) -> &mut T
  7873. impl<T> core::convert::From<T> for aya::programs::ProgramError
  7874. pub fn aya::programs::ProgramError::from(t: T) -> T
  7875. #[non_exhaustive] pub enum aya::programs::ProgramType
  7876. pub aya::programs::ProgramType::CgroupDevice = 15
  7877. pub aya::programs::ProgramType::CgroupSkb = 8
  7878. pub aya::programs::ProgramType::CgroupSock = 9
  7879. pub aya::programs::ProgramType::CgroupSockAddr = 18
  7880. pub aya::programs::ProgramType::CgroupSockopt = 25
  7881. pub aya::programs::ProgramType::CgroupSysctl = 23
  7882. pub aya::programs::ProgramType::Extension = 28
  7883. pub aya::programs::ProgramType::FlowDissector = 22
  7884. pub aya::programs::ProgramType::KProbe = 2
  7885. pub aya::programs::ProgramType::LircMode2 = 20
  7886. pub aya::programs::ProgramType::Lsm = 29
  7887. pub aya::programs::ProgramType::LwtInput = 10
  7888. pub aya::programs::ProgramType::LwtOutput = 11
  7889. pub aya::programs::ProgramType::LwtSeg6local = 19
  7890. pub aya::programs::ProgramType::LwtXmit = 12
  7891. pub aya::programs::ProgramType::Netfilter = 32
  7892. pub aya::programs::ProgramType::PerfEvent = 7
  7893. pub aya::programs::ProgramType::RawTracePoint = 17
  7894. pub aya::programs::ProgramType::RawTracePointWritable = 24
  7895. pub aya::programs::ProgramType::SchedAction = 4
  7896. pub aya::programs::ProgramType::SchedClassifier = 3
  7897. pub aya::programs::ProgramType::SkLookup = 30
  7898. pub aya::programs::ProgramType::SkMsg = 16
  7899. pub aya::programs::ProgramType::SkReuseport = 21
  7900. pub aya::programs::ProgramType::SkSkb = 14
  7901. pub aya::programs::ProgramType::SockOps = 13
  7902. pub aya::programs::ProgramType::SocketFilter = 1
  7903. pub aya::programs::ProgramType::StructOps = 27
  7904. pub aya::programs::ProgramType::Syscall = 31
  7905. pub aya::programs::ProgramType::TracePoint = 5
  7906. pub aya::programs::ProgramType::Tracing = 26
  7907. pub aya::programs::ProgramType::Unspecified = 0
  7908. pub aya::programs::ProgramType::Xdp = 6
  7909. impl core::clone::Clone for aya::programs::ProgramType
  7910. pub fn aya::programs::ProgramType::clone(&self) -> aya::programs::ProgramType
  7911. impl core::cmp::PartialEq for aya::programs::ProgramType
  7912. pub fn aya::programs::ProgramType::eq(&self, other: &aya::programs::ProgramType) -> bool
  7913. impl core::convert::TryFrom<aya_obj::generated::linux_bindings_x86_64::bpf_prog_type> for aya::programs::ProgramType
  7914. pub type aya::programs::ProgramType::Error = aya::programs::ProgramError
  7915. pub fn aya::programs::ProgramType::try_from(prog_type: aya_obj::generated::linux_bindings_x86_64::bpf_prog_type) -> core::result::Result<Self, Self::Error>
  7916. impl core::fmt::Debug for aya::programs::ProgramType
  7917. pub fn aya::programs::ProgramType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7918. impl core::marker::Copy for aya::programs::ProgramType
  7919. impl core::marker::StructuralPartialEq for aya::programs::ProgramType
  7920. impl core::marker::Freeze for aya::programs::ProgramType
  7921. impl core::marker::Send for aya::programs::ProgramType
  7922. impl core::marker::Sync for aya::programs::ProgramType
  7923. impl core::marker::Unpin for aya::programs::ProgramType
  7924. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramType
  7925. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramType
  7926. impl<T, U> core::convert::Into<U> for aya::programs::ProgramType where U: core::convert::From<T>
  7927. pub fn aya::programs::ProgramType::into(self) -> U
  7928. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramType where U: core::convert::Into<T>
  7929. pub type aya::programs::ProgramType::Error = core::convert::Infallible
  7930. pub fn aya::programs::ProgramType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7931. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramType where U: core::convert::TryFrom<T>
  7932. pub type aya::programs::ProgramType::Error = <U as core::convert::TryFrom<T>>::Error
  7933. pub fn aya::programs::ProgramType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7934. impl<T> alloc::borrow::ToOwned for aya::programs::ProgramType where T: core::clone::Clone
  7935. pub type aya::programs::ProgramType::Owned = T
  7936. pub fn aya::programs::ProgramType::clone_into(&self, target: &mut T)
  7937. pub fn aya::programs::ProgramType::to_owned(&self) -> T
  7938. impl<T> core::any::Any for aya::programs::ProgramType where T: 'static + ?core::marker::Sized
  7939. pub fn aya::programs::ProgramType::type_id(&self) -> core::any::TypeId
  7940. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  7941. pub fn aya::programs::ProgramType::borrow(&self) -> &T
  7942. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramType where T: ?core::marker::Sized
  7943. pub fn aya::programs::ProgramType::borrow_mut(&mut self) -> &mut T
  7944. impl<T> core::clone::CloneToUninit for aya::programs::ProgramType where T: core::clone::Clone
  7945. pub unsafe fn aya::programs::ProgramType::clone_to_uninit(&self, dest: *mut u8)
  7946. impl<T> core::convert::From<T> for aya::programs::ProgramType
  7947. pub fn aya::programs::ProgramType::from(t: T) -> T
  7948. pub enum aya::programs::SamplePolicy
  7949. pub aya::programs::SamplePolicy::Frequency(u64)
  7950. pub aya::programs::SamplePolicy::Period(u64)
  7951. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  7952. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  7953. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  7954. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7955. impl core::marker::Freeze for aya::programs::perf_event::SamplePolicy
  7956. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  7957. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  7958. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  7959. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  7960. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  7961. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  7962. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  7963. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  7964. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  7965. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7966. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  7967. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  7968. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7969. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  7970. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  7971. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  7972. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  7973. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + ?core::marker::Sized
  7974. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  7975. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  7976. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  7977. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: ?core::marker::Sized
  7978. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  7979. impl<T> core::clone::CloneToUninit for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  7980. pub unsafe fn aya::programs::perf_event::SamplePolicy::clone_to_uninit(&self, dest: *mut u8)
  7981. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  7982. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  7983. pub enum aya::programs::SkSkbKind
  7984. pub aya::programs::SkSkbKind::StreamParser
  7985. pub aya::programs::SkSkbKind::StreamVerdict
  7986. impl core::clone::Clone for aya::programs::sk_skb::SkSkbKind
  7987. pub fn aya::programs::sk_skb::SkSkbKind::clone(&self) -> aya::programs::sk_skb::SkSkbKind
  7988. impl core::fmt::Debug for aya::programs::sk_skb::SkSkbKind
  7989. pub fn aya::programs::sk_skb::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7990. impl core::marker::Copy for aya::programs::sk_skb::SkSkbKind
  7991. impl core::marker::Freeze for aya::programs::sk_skb::SkSkbKind
  7992. impl core::marker::Send for aya::programs::sk_skb::SkSkbKind
  7993. impl core::marker::Sync for aya::programs::sk_skb::SkSkbKind
  7994. impl core::marker::Unpin for aya::programs::sk_skb::SkSkbKind
  7995. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkbKind
  7996. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkbKind
  7997. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::From<T>
  7998. pub fn aya::programs::sk_skb::SkSkbKind::into(self) -> U
  7999. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::Into<T>
  8000. pub type aya::programs::sk_skb::SkSkbKind::Error = core::convert::Infallible
  8001. pub fn aya::programs::sk_skb::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8002. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkbKind where U: core::convert::TryFrom<T>
  8003. pub type aya::programs::sk_skb::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  8004. pub fn aya::programs::sk_skb::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8005. impl<T> alloc::borrow::ToOwned for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8006. pub type aya::programs::sk_skb::SkSkbKind::Owned = T
  8007. pub fn aya::programs::sk_skb::SkSkbKind::clone_into(&self, target: &mut T)
  8008. pub fn aya::programs::sk_skb::SkSkbKind::to_owned(&self) -> T
  8009. impl<T> core::any::Any for aya::programs::sk_skb::SkSkbKind where T: 'static + ?core::marker::Sized
  8010. pub fn aya::programs::sk_skb::SkSkbKind::type_id(&self) -> core::any::TypeId
  8011. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8012. pub fn aya::programs::sk_skb::SkSkbKind::borrow(&self) -> &T
  8013. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkbKind where T: ?core::marker::Sized
  8014. pub fn aya::programs::sk_skb::SkSkbKind::borrow_mut(&mut self) -> &mut T
  8015. impl<T> core::clone::CloneToUninit for aya::programs::sk_skb::SkSkbKind where T: core::clone::Clone
  8016. pub unsafe fn aya::programs::sk_skb::SkSkbKind::clone_to_uninit(&self, dest: *mut u8)
  8017. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkbKind
  8018. pub fn aya::programs::sk_skb::SkSkbKind::from(t: T) -> T
  8019. pub enum aya::programs::SocketFilterError
  8020. pub aya::programs::SocketFilterError::SoAttachEbpfError
  8021. pub aya::programs::SocketFilterError::SoAttachEbpfError::io_error: std::io::error::Error
  8022. impl core::convert::From<aya::programs::socket_filter::SocketFilterError> for aya::programs::ProgramError
  8023. pub fn aya::programs::ProgramError::from(source: aya::programs::socket_filter::SocketFilterError) -> Self
  8024. impl core::error::Error for aya::programs::socket_filter::SocketFilterError
  8025. pub fn aya::programs::socket_filter::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8026. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilterError
  8027. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8028. impl core::fmt::Display for aya::programs::socket_filter::SocketFilterError
  8029. pub fn aya::programs::socket_filter::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8030. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilterError
  8031. impl core::marker::Send for aya::programs::socket_filter::SocketFilterError
  8032. impl core::marker::Sync for aya::programs::socket_filter::SocketFilterError
  8033. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilterError
  8034. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilterError
  8035. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilterError
  8036. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::From<T>
  8037. pub fn aya::programs::socket_filter::SocketFilterError::into(self) -> U
  8038. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::Into<T>
  8039. pub type aya::programs::socket_filter::SocketFilterError::Error = core::convert::Infallible
  8040. pub fn aya::programs::socket_filter::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8041. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilterError where U: core::convert::TryFrom<T>
  8042. pub type aya::programs::socket_filter::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  8043. pub fn aya::programs::socket_filter::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8044. impl<T> alloc::string::ToString for aya::programs::socket_filter::SocketFilterError where T: core::fmt::Display + ?core::marker::Sized
  8045. pub fn aya::programs::socket_filter::SocketFilterError::to_string(&self) -> alloc::string::String
  8046. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilterError where T: 'static + ?core::marker::Sized
  8047. pub fn aya::programs::socket_filter::SocketFilterError::type_id(&self) -> core::any::TypeId
  8048. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8049. pub fn aya::programs::socket_filter::SocketFilterError::borrow(&self) -> &T
  8050. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilterError where T: ?core::marker::Sized
  8051. pub fn aya::programs::socket_filter::SocketFilterError::borrow_mut(&mut self) -> &mut T
  8052. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilterError
  8053. pub fn aya::programs::socket_filter::SocketFilterError::from(t: T) -> T
  8054. pub enum aya::programs::TcAttachType
  8055. pub aya::programs::TcAttachType::Custom(u32)
  8056. pub aya::programs::TcAttachType::Egress
  8057. pub aya::programs::TcAttachType::Ingress
  8058. impl core::clone::Clone for aya::programs::tc::TcAttachType
  8059. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  8060. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  8061. impl core::cmp::PartialEq for aya::programs::tc::TcAttachType
  8062. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  8063. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  8064. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8065. impl core::hash::Hash for aya::programs::tc::TcAttachType
  8066. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  8067. impl core::marker::Copy for aya::programs::tc::TcAttachType
  8068. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  8069. impl core::marker::Freeze for aya::programs::tc::TcAttachType
  8070. impl core::marker::Send for aya::programs::tc::TcAttachType
  8071. impl core::marker::Sync for aya::programs::tc::TcAttachType
  8072. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  8073. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  8074. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  8075. impl<Q, K> equivalent::Equivalent<K> for aya::programs::tc::TcAttachType where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  8076. pub fn aya::programs::tc::TcAttachType::equivalent(&self, key: &K) -> bool
  8077. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  8078. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  8079. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  8080. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  8081. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8082. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  8083. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  8084. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8085. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8086. pub type aya::programs::tc::TcAttachType::Owned = T
  8087. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  8088. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  8089. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + ?core::marker::Sized
  8090. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  8091. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8092. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  8093. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: ?core::marker::Sized
  8094. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  8095. impl<T> core::clone::CloneToUninit for aya::programs::tc::TcAttachType where T: core::clone::Clone
  8096. pub unsafe fn aya::programs::tc::TcAttachType::clone_to_uninit(&self, dest: *mut u8)
  8097. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  8098. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  8099. pub enum aya::programs::TcError
  8100. pub aya::programs::TcError::AlreadyAttached
  8101. pub aya::programs::TcError::InvalidLinkOperation
  8102. pub aya::programs::TcError::InvalidTcxAttach(u32)
  8103. pub aya::programs::TcError::IoError(std::io::error::Error)
  8104. pub aya::programs::TcError::NetlinkError(aya::sys::netlink::NetlinkError)
  8105. pub aya::programs::TcError::NulError(alloc::ffi::c_str::NulError)
  8106. impl core::convert::From<alloc::ffi::c_str::NulError> for aya::programs::tc::TcError
  8107. pub fn aya::programs::tc::TcError::from(source: alloc::ffi::c_str::NulError) -> Self
  8108. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  8109. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  8110. impl core::convert::From<std::io::error::Error> for aya::programs::tc::TcError
  8111. pub fn aya::programs::tc::TcError::from(source: std::io::error::Error) -> Self
  8112. impl core::error::Error for aya::programs::tc::TcError
  8113. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8114. impl core::fmt::Debug for aya::programs::tc::TcError
  8115. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8116. impl core::fmt::Display for aya::programs::tc::TcError
  8117. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8118. impl core::marker::Freeze for aya::programs::tc::TcError
  8119. impl core::marker::Send for aya::programs::tc::TcError
  8120. impl core::marker::Sync for aya::programs::tc::TcError
  8121. impl core::marker::Unpin for aya::programs::tc::TcError
  8122. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  8123. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  8124. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  8125. pub fn aya::programs::tc::TcError::into(self) -> U
  8126. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  8127. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  8128. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8129. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  8130. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  8131. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8132. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + ?core::marker::Sized
  8133. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  8134. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + ?core::marker::Sized
  8135. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  8136. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8137. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  8138. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: ?core::marker::Sized
  8139. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  8140. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  8141. pub fn aya::programs::tc::TcError::from(t: T) -> T
  8142. pub enum aya::programs::TracePointError
  8143. pub aya::programs::TracePointError::FileError
  8144. pub aya::programs::TracePointError::FileError::filename: std::path::PathBuf
  8145. pub aya::programs::TracePointError::FileError::io_error: std::io::error::Error
  8146. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  8147. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  8148. impl core::error::Error for aya::programs::trace_point::TracePointError
  8149. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8150. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  8151. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8152. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  8153. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8154. impl core::marker::Freeze for aya::programs::trace_point::TracePointError
  8155. impl core::marker::Send for aya::programs::trace_point::TracePointError
  8156. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  8157. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  8158. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  8159. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  8160. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  8161. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  8162. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  8163. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  8164. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8165. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  8166. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  8167. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8168. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + ?core::marker::Sized
  8169. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  8170. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + ?core::marker::Sized
  8171. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  8172. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8173. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  8174. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: ?core::marker::Sized
  8175. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  8176. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  8177. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  8178. pub enum aya::programs::UProbeError
  8179. pub aya::programs::UProbeError::FileError
  8180. pub aya::programs::UProbeError::FileError::filename: std::path::PathBuf
  8181. pub aya::programs::UProbeError::FileError::io_error: std::io::error::Error
  8182. pub aya::programs::UProbeError::InvalidLdSoCache
  8183. pub aya::programs::UProbeError::InvalidLdSoCache::io_error: &'static std::io::error::Error
  8184. pub aya::programs::UProbeError::InvalidTarget
  8185. pub aya::programs::UProbeError::InvalidTarget::path: std::path::PathBuf
  8186. pub aya::programs::UProbeError::ProcMap
  8187. pub aya::programs::UProbeError::ProcMap::pid: i32
  8188. pub aya::programs::UProbeError::ProcMap::source: aya::programs::uprobe::ProcMapError
  8189. pub aya::programs::UProbeError::SymbolError
  8190. pub aya::programs::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  8191. pub aya::programs::UProbeError::SymbolError::symbol: alloc::string::String
  8192. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  8193. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  8194. impl core::error::Error for aya::programs::uprobe::UProbeError
  8195. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8196. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  8197. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8198. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  8199. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8200. impl core::marker::Freeze for aya::programs::uprobe::UProbeError
  8201. impl core::marker::Send for aya::programs::uprobe::UProbeError
  8202. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  8203. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  8204. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  8205. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  8206. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  8207. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  8208. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  8209. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  8210. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8211. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  8212. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  8213. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8214. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + ?core::marker::Sized
  8215. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  8216. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + ?core::marker::Sized
  8217. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  8218. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8219. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  8220. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: ?core::marker::Sized
  8221. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  8222. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  8223. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  8224. pub enum aya::programs::XdpError
  8225. pub aya::programs::XdpError::NetlinkError(aya::sys::netlink::NetlinkError)
  8226. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  8227. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  8228. impl core::error::Error for aya::programs::xdp::XdpError
  8229. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8230. impl core::fmt::Debug for aya::programs::xdp::XdpError
  8231. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8232. impl core::fmt::Display for aya::programs::xdp::XdpError
  8233. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8234. impl core::marker::Freeze for aya::programs::xdp::XdpError
  8235. impl core::marker::Send for aya::programs::xdp::XdpError
  8236. impl core::marker::Sync for aya::programs::xdp::XdpError
  8237. impl core::marker::Unpin for aya::programs::xdp::XdpError
  8238. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  8239. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  8240. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  8241. pub fn aya::programs::xdp::XdpError::into(self) -> U
  8242. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  8243. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  8244. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8245. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  8246. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  8247. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8248. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + ?core::marker::Sized
  8249. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  8250. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + ?core::marker::Sized
  8251. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  8252. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8253. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  8254. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: ?core::marker::Sized
  8255. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  8256. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  8257. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  8258. pub struct aya::programs::BtfTracePoint
  8259. impl aya::programs::tp_btf::BtfTracePoint
  8260. pub const aya::programs::tp_btf::BtfTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  8261. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  8262. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8263. impl aya::programs::tp_btf::BtfTracePoint
  8264. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8265. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  8266. impl aya::programs::tp_btf::BtfTracePoint
  8267. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8268. impl aya::programs::tp_btf::BtfTracePoint
  8269. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8270. impl aya::programs::tp_btf::BtfTracePoint
  8271. pub unsafe fn aya::programs::tp_btf::BtfTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8272. impl aya::programs::tp_btf::BtfTracePoint
  8273. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8274. impl aya::programs::tp_btf::BtfTracePoint
  8275. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8276. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8277. impl aya::programs::tp_btf::BtfTracePoint
  8278. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8279. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  8280. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8281. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  8282. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  8283. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  8284. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8285. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  8286. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  8287. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  8288. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  8289. impl core::marker::Freeze for aya::programs::tp_btf::BtfTracePoint
  8290. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  8291. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  8292. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  8293. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8294. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  8295. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  8296. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  8297. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  8298. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  8299. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8300. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  8301. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  8302. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8303. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + ?core::marker::Sized
  8304. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  8305. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8306. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  8307. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: ?core::marker::Sized
  8308. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  8309. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  8310. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  8311. pub struct aya::programs::CgroupDevice
  8312. impl aya::programs::cgroup_device::CgroupDevice
  8313. pub const aya::programs::cgroup_device::CgroupDevice::PROGRAM_TYPE: aya::programs::ProgramType
  8314. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  8315. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8316. pub fn aya::programs::cgroup_device::CgroupDevice::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::cgroup_device::CgroupDeviceLink>, aya::programs::ProgramError>
  8317. impl aya::programs::cgroup_device::CgroupDevice
  8318. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8319. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  8320. impl aya::programs::cgroup_device::CgroupDevice
  8321. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8322. impl aya::programs::cgroup_device::CgroupDevice
  8323. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8324. impl aya::programs::cgroup_device::CgroupDevice
  8325. pub fn aya::programs::cgroup_device::CgroupDevice::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8326. impl aya::programs::cgroup_device::CgroupDevice
  8327. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8328. impl aya::programs::cgroup_device::CgroupDevice
  8329. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8330. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8331. impl aya::programs::cgroup_device::CgroupDevice
  8332. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8333. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  8334. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8335. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  8336. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  8337. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  8338. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8339. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  8340. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  8341. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  8342. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  8343. impl core::marker::Freeze for aya::programs::cgroup_device::CgroupDevice
  8344. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  8345. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  8346. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  8347. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8348. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  8349. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  8350. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  8351. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  8352. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  8353. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8354. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  8355. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  8356. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8357. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + ?core::marker::Sized
  8358. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  8359. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8360. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  8361. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: ?core::marker::Sized
  8362. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  8363. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  8364. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  8365. pub struct aya::programs::CgroupSkb
  8366. impl aya::programs::cgroup_skb::CgroupSkb
  8367. pub const aya::programs::cgroup_skb::CgroupSkb::PROGRAM_TYPE: aya::programs::ProgramType
  8368. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  8369. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  8370. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8371. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8372. impl aya::programs::cgroup_skb::CgroupSkb
  8373. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8374. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  8375. impl aya::programs::cgroup_skb::CgroupSkb
  8376. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8377. impl aya::programs::cgroup_skb::CgroupSkb
  8378. pub fn aya::programs::cgroup_skb::CgroupSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>) -> core::result::Result<Self, aya::programs::ProgramError>
  8379. impl aya::programs::cgroup_skb::CgroupSkb
  8380. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8381. impl aya::programs::cgroup_skb::CgroupSkb
  8382. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8383. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8384. impl aya::programs::cgroup_skb::CgroupSkb
  8385. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8386. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  8387. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8388. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  8389. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  8390. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  8391. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8392. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  8393. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  8394. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  8395. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  8396. impl core::marker::Freeze for aya::programs::cgroup_skb::CgroupSkb
  8397. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  8398. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  8399. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  8400. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8401. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  8402. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  8403. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  8404. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  8405. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  8406. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8407. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  8408. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  8409. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8410. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + ?core::marker::Sized
  8411. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  8412. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8413. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  8414. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: ?core::marker::Sized
  8415. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  8416. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  8417. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  8418. pub struct aya::programs::CgroupSock
  8419. impl aya::programs::cgroup_sock::CgroupSock
  8420. pub const aya::programs::cgroup_sock::CgroupSock::PROGRAM_TYPE: aya::programs::ProgramType
  8421. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  8422. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8423. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8424. impl aya::programs::cgroup_sock::CgroupSock
  8425. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8426. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  8427. impl aya::programs::cgroup_sock::CgroupSock
  8428. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8429. impl aya::programs::cgroup_sock::CgroupSock
  8430. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8431. impl aya::programs::cgroup_sock::CgroupSock
  8432. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8433. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8434. impl aya::programs::cgroup_sock::CgroupSock
  8435. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8436. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  8437. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8438. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  8439. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  8440. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  8441. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8442. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  8443. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  8444. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  8445. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  8446. impl core::marker::Freeze for aya::programs::cgroup_sock::CgroupSock
  8447. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  8448. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  8449. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  8450. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8451. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  8452. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  8453. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  8454. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  8455. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  8456. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8457. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  8458. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  8459. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8460. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + ?core::marker::Sized
  8461. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  8462. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8463. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  8464. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: ?core::marker::Sized
  8465. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  8466. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  8467. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  8468. pub struct aya::programs::CgroupSockAddr
  8469. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8470. pub const aya::programs::cgroup_sock_addr::CgroupSockAddr::PROGRAM_TYPE: aya::programs::ProgramType
  8471. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  8472. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8473. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8474. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8475. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8476. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  8477. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8478. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8479. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8480. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8481. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8482. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8483. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8484. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  8485. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8486. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8487. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8488. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8489. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  8490. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  8491. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8492. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  8493. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  8494. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  8495. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  8496. impl core::marker::Freeze for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8497. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8498. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8499. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8500. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8501. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8502. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  8503. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  8504. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  8505. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  8506. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8507. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  8508. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  8509. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8510. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + ?core::marker::Sized
  8511. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  8512. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8513. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  8514. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: ?core::marker::Sized
  8515. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  8516. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  8517. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  8518. pub struct aya::programs::CgroupSockopt
  8519. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8520. pub const aya::programs::cgroup_sockopt::CgroupSockopt::PROGRAM_TYPE: aya::programs::ProgramType
  8521. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  8522. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8523. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8524. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8525. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8526. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  8527. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8528. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8529. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8530. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  8531. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8532. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8533. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8534. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8535. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8536. impl aya::programs::cgroup_sockopt::CgroupSockopt
  8537. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8538. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  8539. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8540. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  8541. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  8542. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  8543. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8544. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  8545. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  8546. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  8547. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  8548. impl core::marker::Freeze for aya::programs::cgroup_sockopt::CgroupSockopt
  8549. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  8550. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  8551. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  8552. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8553. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  8554. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  8555. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  8556. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  8557. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  8558. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8559. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  8560. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  8561. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8562. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + ?core::marker::Sized
  8563. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  8564. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8565. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  8566. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: ?core::marker::Sized
  8567. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  8568. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  8569. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  8570. pub struct aya::programs::CgroupSysctl
  8571. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8572. pub const aya::programs::cgroup_sysctl::CgroupSysctl::PROGRAM_TYPE: aya::programs::ProgramType
  8573. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  8574. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8575. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8576. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8577. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  8578. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8579. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8580. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8581. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8582. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8583. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8584. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8585. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8586. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8587. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8588. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8589. impl aya::programs::cgroup_sysctl::CgroupSysctl
  8590. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8591. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  8592. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8593. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  8594. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  8595. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  8596. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8597. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  8598. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  8599. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  8600. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  8601. impl core::marker::Freeze for aya::programs::cgroup_sysctl::CgroupSysctl
  8602. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  8603. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  8604. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  8605. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8606. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  8607. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  8608. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  8609. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  8610. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  8611. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8612. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  8613. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  8614. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8615. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + ?core::marker::Sized
  8616. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  8617. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8618. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  8619. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: ?core::marker::Sized
  8620. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  8621. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  8622. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  8623. pub struct aya::programs::Extension
  8624. impl aya::programs::extension::Extension
  8625. pub const aya::programs::extension::Extension::PROGRAM_TYPE: aya::programs::ProgramType
  8626. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  8627. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  8628. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  8629. impl aya::programs::extension::Extension
  8630. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8631. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  8632. impl aya::programs::extension::Extension
  8633. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8634. impl aya::programs::extension::Extension
  8635. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8636. impl aya::programs::extension::Extension
  8637. pub fn aya::programs::extension::Extension::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8638. impl aya::programs::extension::Extension
  8639. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8640. impl aya::programs::extension::Extension
  8641. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8642. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8643. impl aya::programs::extension::Extension
  8644. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8645. impl core::fmt::Debug for aya::programs::extension::Extension
  8646. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8647. impl core::ops::drop::Drop for aya::programs::extension::Extension
  8648. pub fn aya::programs::extension::Extension::drop(&mut self)
  8649. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  8650. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8651. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  8652. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  8653. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  8654. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  8655. impl core::marker::Freeze for aya::programs::extension::Extension
  8656. impl core::marker::Send for aya::programs::extension::Extension
  8657. impl core::marker::Sync for aya::programs::extension::Extension
  8658. impl core::marker::Unpin for aya::programs::extension::Extension
  8659. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  8660. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  8661. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  8662. pub fn aya::programs::extension::Extension::into(self) -> U
  8663. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  8664. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  8665. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8666. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  8667. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  8668. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8669. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + ?core::marker::Sized
  8670. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  8671. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8672. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  8673. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: ?core::marker::Sized
  8674. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  8675. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  8676. pub fn aya::programs::extension::Extension::from(t: T) -> T
  8677. pub struct aya::programs::FEntry
  8678. impl aya::programs::fentry::FEntry
  8679. pub const aya::programs::fentry::FEntry::PROGRAM_TYPE: aya::programs::ProgramType
  8680. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  8681. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8682. impl aya::programs::fentry::FEntry
  8683. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8684. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  8685. impl aya::programs::fentry::FEntry
  8686. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8687. impl aya::programs::fentry::FEntry
  8688. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8689. impl aya::programs::fentry::FEntry
  8690. pub unsafe fn aya::programs::fentry::FEntry::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8691. impl aya::programs::fentry::FEntry
  8692. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8693. impl aya::programs::fentry::FEntry
  8694. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8695. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8696. impl aya::programs::fentry::FEntry
  8697. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8698. impl core::fmt::Debug for aya::programs::fentry::FEntry
  8699. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8700. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  8701. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  8702. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  8703. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8704. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  8705. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  8706. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  8707. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  8708. impl core::marker::Freeze for aya::programs::fentry::FEntry
  8709. impl core::marker::Send for aya::programs::fentry::FEntry
  8710. impl core::marker::Sync for aya::programs::fentry::FEntry
  8711. impl core::marker::Unpin for aya::programs::fentry::FEntry
  8712. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  8713. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  8714. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  8715. pub fn aya::programs::fentry::FEntry::into(self) -> U
  8716. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  8717. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  8718. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8719. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  8720. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  8721. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8722. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + ?core::marker::Sized
  8723. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  8724. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8725. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  8726. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: ?core::marker::Sized
  8727. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  8728. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  8729. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  8730. pub struct aya::programs::FExit
  8731. impl aya::programs::fexit::FExit
  8732. pub const aya::programs::fexit::FExit::PROGRAM_TYPE: aya::programs::ProgramType
  8733. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  8734. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8735. impl aya::programs::fexit::FExit
  8736. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8737. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  8738. impl aya::programs::fexit::FExit
  8739. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8740. impl aya::programs::fexit::FExit
  8741. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8742. impl aya::programs::fexit::FExit
  8743. pub unsafe fn aya::programs::fexit::FExit::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8744. impl aya::programs::fexit::FExit
  8745. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8746. impl aya::programs::fexit::FExit
  8747. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8748. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8749. impl aya::programs::fexit::FExit
  8750. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8751. impl core::fmt::Debug for aya::programs::fexit::FExit
  8752. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8753. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  8754. pub fn aya::programs::fexit::FExit::drop(&mut self)
  8755. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  8756. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8757. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  8758. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  8759. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  8760. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  8761. impl core::marker::Freeze for aya::programs::fexit::FExit
  8762. impl core::marker::Send for aya::programs::fexit::FExit
  8763. impl core::marker::Sync for aya::programs::fexit::FExit
  8764. impl core::marker::Unpin for aya::programs::fexit::FExit
  8765. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  8766. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  8767. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  8768. pub fn aya::programs::fexit::FExit::into(self) -> U
  8769. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  8770. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  8771. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8772. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  8773. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  8774. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8775. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + ?core::marker::Sized
  8776. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  8777. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8778. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  8779. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: ?core::marker::Sized
  8780. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  8781. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  8782. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  8783. pub struct aya::programs::FlowDissector
  8784. impl aya::programs::flow_dissector::FlowDissector
  8785. pub const aya::programs::flow_dissector::FlowDissector::PROGRAM_TYPE: aya::programs::ProgramType
  8786. pub fn aya::programs::flow_dissector::FlowDissector::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLinkId, aya::programs::ProgramError>
  8787. pub fn aya::programs::flow_dissector::FlowDissector::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8788. impl aya::programs::flow_dissector::FlowDissector
  8789. pub fn aya::programs::flow_dissector::FlowDissector::detach(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8790. pub fn aya::programs::flow_dissector::FlowDissector::take_link(&mut self, link_id: aya::programs::flow_dissector::FlowDissectorLinkId) -> core::result::Result<aya::programs::flow_dissector::FlowDissectorLink, aya::programs::ProgramError>
  8791. impl aya::programs::flow_dissector::FlowDissector
  8792. pub fn aya::programs::flow_dissector::FlowDissector::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8793. impl aya::programs::flow_dissector::FlowDissector
  8794. pub fn aya::programs::flow_dissector::FlowDissector::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8795. impl aya::programs::flow_dissector::FlowDissector
  8796. pub fn aya::programs::flow_dissector::FlowDissector::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8797. impl aya::programs::flow_dissector::FlowDissector
  8798. pub fn aya::programs::flow_dissector::FlowDissector::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8799. pub fn aya::programs::flow_dissector::FlowDissector::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8800. impl aya::programs::flow_dissector::FlowDissector
  8801. pub fn aya::programs::flow_dissector::FlowDissector::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8802. impl core::fmt::Debug for aya::programs::flow_dissector::FlowDissector
  8803. pub fn aya::programs::flow_dissector::FlowDissector::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8804. impl core::ops::drop::Drop for aya::programs::flow_dissector::FlowDissector
  8805. pub fn aya::programs::flow_dissector::FlowDissector::drop(&mut self)
  8806. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::flow_dissector::FlowDissector
  8807. pub type &'a aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8808. pub fn &'a aya::programs::flow_dissector::FlowDissector::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8809. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::flow_dissector::FlowDissector
  8810. pub type &'a mut aya::programs::flow_dissector::FlowDissector::Error = aya::programs::ProgramError
  8811. pub fn &'a mut aya::programs::flow_dissector::FlowDissector::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::flow_dissector::FlowDissector, aya::programs::ProgramError>
  8812. impl core::marker::Freeze for aya::programs::flow_dissector::FlowDissector
  8813. impl core::marker::Send for aya::programs::flow_dissector::FlowDissector
  8814. impl core::marker::Sync for aya::programs::flow_dissector::FlowDissector
  8815. impl core::marker::Unpin for aya::programs::flow_dissector::FlowDissector
  8816. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::flow_dissector::FlowDissector
  8817. impl core::panic::unwind_safe::UnwindSafe for aya::programs::flow_dissector::FlowDissector
  8818. impl<T, U> core::convert::Into<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::From<T>
  8819. pub fn aya::programs::flow_dissector::FlowDissector::into(self) -> U
  8820. impl<T, U> core::convert::TryFrom<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::Into<T>
  8821. pub type aya::programs::flow_dissector::FlowDissector::Error = core::convert::Infallible
  8822. pub fn aya::programs::flow_dissector::FlowDissector::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8823. impl<T, U> core::convert::TryInto<U> for aya::programs::flow_dissector::FlowDissector where U: core::convert::TryFrom<T>
  8824. pub type aya::programs::flow_dissector::FlowDissector::Error = <U as core::convert::TryFrom<T>>::Error
  8825. pub fn aya::programs::flow_dissector::FlowDissector::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8826. impl<T> core::any::Any for aya::programs::flow_dissector::FlowDissector where T: 'static + ?core::marker::Sized
  8827. pub fn aya::programs::flow_dissector::FlowDissector::type_id(&self) -> core::any::TypeId
  8828. impl<T> core::borrow::Borrow<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8829. pub fn aya::programs::flow_dissector::FlowDissector::borrow(&self) -> &T
  8830. impl<T> core::borrow::BorrowMut<T> for aya::programs::flow_dissector::FlowDissector where T: ?core::marker::Sized
  8831. pub fn aya::programs::flow_dissector::FlowDissector::borrow_mut(&mut self) -> &mut T
  8832. impl<T> core::convert::From<T> for aya::programs::flow_dissector::FlowDissector
  8833. pub fn aya::programs::flow_dissector::FlowDissector::from(t: T) -> T
  8834. pub struct aya::programs::Iter
  8835. impl aya::programs::iter::Iter
  8836. pub const aya::programs::iter::Iter::PROGRAM_TYPE: aya::programs::ProgramType
  8837. pub fn aya::programs::iter::Iter::attach(&mut self) -> core::result::Result<aya::programs::iter::IterLinkId, aya::programs::ProgramError>
  8838. pub fn aya::programs::iter::Iter::load(&mut self, iter_type: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  8839. impl aya::programs::iter::Iter
  8840. pub fn aya::programs::iter::Iter::detach(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8841. pub fn aya::programs::iter::Iter::take_link(&mut self, link_id: aya::programs::iter::IterLinkId) -> core::result::Result<aya::programs::iter::IterLink, aya::programs::ProgramError>
  8842. impl aya::programs::iter::Iter
  8843. pub fn aya::programs::iter::Iter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8844. impl aya::programs::iter::Iter
  8845. pub fn aya::programs::iter::Iter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8846. impl aya::programs::iter::Iter
  8847. pub fn aya::programs::iter::Iter::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8848. impl aya::programs::iter::Iter
  8849. pub fn aya::programs::iter::Iter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8850. impl aya::programs::iter::Iter
  8851. pub fn aya::programs::iter::Iter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8852. pub fn aya::programs::iter::Iter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8853. impl aya::programs::iter::Iter
  8854. pub fn aya::programs::iter::Iter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8855. impl core::fmt::Debug for aya::programs::iter::Iter
  8856. pub fn aya::programs::iter::Iter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8857. impl core::ops::drop::Drop for aya::programs::iter::Iter
  8858. pub fn aya::programs::iter::Iter::drop(&mut self)
  8859. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::iter::Iter
  8860. pub type &'a aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8861. pub fn &'a aya::programs::iter::Iter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::iter::Iter, aya::programs::ProgramError>
  8862. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::iter::Iter
  8863. pub type &'a mut aya::programs::iter::Iter::Error = aya::programs::ProgramError
  8864. pub fn &'a mut aya::programs::iter::Iter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::iter::Iter, aya::programs::ProgramError>
  8865. impl core::marker::Freeze for aya::programs::iter::Iter
  8866. impl core::marker::Send for aya::programs::iter::Iter
  8867. impl core::marker::Sync for aya::programs::iter::Iter
  8868. impl core::marker::Unpin for aya::programs::iter::Iter
  8869. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::iter::Iter
  8870. impl core::panic::unwind_safe::UnwindSafe for aya::programs::iter::Iter
  8871. impl<T, U> core::convert::Into<U> for aya::programs::iter::Iter where U: core::convert::From<T>
  8872. pub fn aya::programs::iter::Iter::into(self) -> U
  8873. impl<T, U> core::convert::TryFrom<U> for aya::programs::iter::Iter where U: core::convert::Into<T>
  8874. pub type aya::programs::iter::Iter::Error = core::convert::Infallible
  8875. pub fn aya::programs::iter::Iter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8876. impl<T, U> core::convert::TryInto<U> for aya::programs::iter::Iter where U: core::convert::TryFrom<T>
  8877. pub type aya::programs::iter::Iter::Error = <U as core::convert::TryFrom<T>>::Error
  8878. pub fn aya::programs::iter::Iter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8879. impl<T> core::any::Any for aya::programs::iter::Iter where T: 'static + ?core::marker::Sized
  8880. pub fn aya::programs::iter::Iter::type_id(&self) -> core::any::TypeId
  8881. impl<T> core::borrow::Borrow<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8882. pub fn aya::programs::iter::Iter::borrow(&self) -> &T
  8883. impl<T> core::borrow::BorrowMut<T> for aya::programs::iter::Iter where T: ?core::marker::Sized
  8884. pub fn aya::programs::iter::Iter::borrow_mut(&mut self) -> &mut T
  8885. impl<T> core::convert::From<T> for aya::programs::iter::Iter
  8886. pub fn aya::programs::iter::Iter::from(t: T) -> T
  8887. pub struct aya::programs::KProbe
  8888. impl aya::programs::kprobe::KProbe
  8889. pub const aya::programs::kprobe::KProbe::PROGRAM_TYPE: aya::programs::ProgramType
  8890. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  8891. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  8892. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  8893. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8894. impl aya::programs::kprobe::KProbe
  8895. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8896. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  8897. impl aya::programs::kprobe::KProbe
  8898. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8899. impl aya::programs::kprobe::KProbe
  8900. pub unsafe fn aya::programs::kprobe::KProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  8901. impl aya::programs::kprobe::KProbe
  8902. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8903. impl aya::programs::kprobe::KProbe
  8904. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8905. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8906. impl aya::programs::kprobe::KProbe
  8907. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8908. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  8909. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8910. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  8911. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  8912. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  8913. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  8914. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  8915. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  8916. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  8917. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  8918. impl core::marker::Freeze for aya::programs::kprobe::KProbe
  8919. impl core::marker::Send for aya::programs::kprobe::KProbe
  8920. impl core::marker::Sync for aya::programs::kprobe::KProbe
  8921. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  8922. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  8923. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  8924. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  8925. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  8926. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  8927. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  8928. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8929. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  8930. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  8931. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8932. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + ?core::marker::Sized
  8933. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  8934. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  8935. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  8936. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: ?core::marker::Sized
  8937. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  8938. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  8939. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  8940. pub struct aya::programs::LinkOrder
  8941. impl aya::programs::links::LinkOrder
  8942. pub fn aya::programs::links::LinkOrder::after_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  8943. pub fn aya::programs::links::LinkOrder::after_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  8944. pub fn aya::programs::links::LinkOrder::after_program_id(id: aya::programs::ProgramId) -> Self
  8945. pub fn aya::programs::links::LinkOrder::before_link<L: aya::programs::MultiProgLink>(link: &L) -> core::result::Result<Self, aya::programs::links::LinkError>
  8946. pub fn aya::programs::links::LinkOrder::before_program<P: aya::programs::MultiProgram>(program: &P) -> core::result::Result<Self, aya::programs::ProgramError>
  8947. pub fn aya::programs::links::LinkOrder::before_program_id(id: aya::programs::ProgramId) -> Self
  8948. pub fn aya::programs::links::LinkOrder::first() -> Self
  8949. pub fn aya::programs::links::LinkOrder::last() -> Self
  8950. impl core::default::Default for aya::programs::links::LinkOrder
  8951. pub fn aya::programs::links::LinkOrder::default() -> Self
  8952. impl core::fmt::Debug for aya::programs::links::LinkOrder
  8953. pub fn aya::programs::links::LinkOrder::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8954. impl core::marker::Freeze for aya::programs::links::LinkOrder
  8955. impl core::marker::Send for aya::programs::links::LinkOrder
  8956. impl core::marker::Sync for aya::programs::links::LinkOrder
  8957. impl core::marker::Unpin for aya::programs::links::LinkOrder
  8958. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkOrder
  8959. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkOrder
  8960. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkOrder where U: core::convert::From<T>
  8961. pub fn aya::programs::links::LinkOrder::into(self) -> U
  8962. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkOrder where U: core::convert::Into<T>
  8963. pub type aya::programs::links::LinkOrder::Error = core::convert::Infallible
  8964. pub fn aya::programs::links::LinkOrder::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8965. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkOrder where U: core::convert::TryFrom<T>
  8966. pub type aya::programs::links::LinkOrder::Error = <U as core::convert::TryFrom<T>>::Error
  8967. pub fn aya::programs::links::LinkOrder::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8968. impl<T> core::any::Any for aya::programs::links::LinkOrder where T: 'static + ?core::marker::Sized
  8969. pub fn aya::programs::links::LinkOrder::type_id(&self) -> core::any::TypeId
  8970. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  8971. pub fn aya::programs::links::LinkOrder::borrow(&self) -> &T
  8972. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkOrder where T: ?core::marker::Sized
  8973. pub fn aya::programs::links::LinkOrder::borrow_mut(&mut self) -> &mut T
  8974. impl<T> core::convert::From<T> for aya::programs::links::LinkOrder
  8975. pub fn aya::programs::links::LinkOrder::from(t: T) -> T
  8976. pub struct aya::programs::LircMode2
  8977. impl aya::programs::lirc_mode2::LircMode2
  8978. pub const aya::programs::lirc_mode2::LircMode2::PROGRAM_TYPE: aya::programs::ProgramType
  8979. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  8980. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  8981. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8982. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  8983. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  8984. impl aya::programs::lirc_mode2::LircMode2
  8985. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  8986. impl aya::programs::lirc_mode2::LircMode2
  8987. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  8988. impl aya::programs::lirc_mode2::LircMode2
  8989. pub fn aya::programs::lirc_mode2::LircMode2::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  8990. impl aya::programs::lirc_mode2::LircMode2
  8991. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  8992. impl aya::programs::lirc_mode2::LircMode2
  8993. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  8994. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  8995. impl aya::programs::lirc_mode2::LircMode2
  8996. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  8997. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  8998. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8999. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  9000. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  9001. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  9002. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9003. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  9004. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  9005. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  9006. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  9007. impl core::marker::Freeze for aya::programs::lirc_mode2::LircMode2
  9008. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  9009. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  9010. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  9011. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  9012. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  9013. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  9014. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  9015. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  9016. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  9017. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9018. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  9019. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  9020. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9021. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + ?core::marker::Sized
  9022. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  9023. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9024. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  9025. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: ?core::marker::Sized
  9026. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  9027. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  9028. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  9029. pub struct aya::programs::Lsm
  9030. impl aya::programs::lsm::Lsm
  9031. pub const aya::programs::lsm::Lsm::PROGRAM_TYPE: aya::programs::ProgramType
  9032. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  9033. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  9034. impl aya::programs::lsm::Lsm
  9035. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9036. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  9037. impl aya::programs::lsm::Lsm
  9038. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9039. impl aya::programs::lsm::Lsm
  9040. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9041. impl aya::programs::lsm::Lsm
  9042. pub fn aya::programs::lsm::Lsm::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9043. impl aya::programs::lsm::Lsm
  9044. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9045. impl aya::programs::lsm::Lsm
  9046. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9047. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9048. impl aya::programs::lsm::Lsm
  9049. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9050. impl core::fmt::Debug for aya::programs::lsm::Lsm
  9051. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9052. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  9053. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  9054. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  9055. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9056. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  9057. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  9058. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  9059. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  9060. impl core::marker::Freeze for aya::programs::lsm::Lsm
  9061. impl core::marker::Send for aya::programs::lsm::Lsm
  9062. impl core::marker::Sync for aya::programs::lsm::Lsm
  9063. impl core::marker::Unpin for aya::programs::lsm::Lsm
  9064. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  9065. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  9066. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  9067. pub fn aya::programs::lsm::Lsm::into(self) -> U
  9068. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  9069. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  9070. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9071. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  9072. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  9073. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9074. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + ?core::marker::Sized
  9075. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  9076. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9077. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  9078. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: ?core::marker::Sized
  9079. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  9080. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  9081. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  9082. pub struct aya::programs::PerfEvent
  9083. impl aya::programs::perf_event::PerfEvent
  9084. pub const aya::programs::perf_event::PerfEvent::PROGRAM_TYPE: aya::programs::ProgramType
  9085. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy, inherit: bool) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  9086. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9087. impl aya::programs::perf_event::PerfEvent
  9088. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9089. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  9090. impl aya::programs::perf_event::PerfEvent
  9091. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9092. impl aya::programs::perf_event::PerfEvent
  9093. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9094. impl aya::programs::perf_event::PerfEvent
  9095. pub fn aya::programs::perf_event::PerfEvent::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9096. impl aya::programs::perf_event::PerfEvent
  9097. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9098. impl aya::programs::perf_event::PerfEvent
  9099. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9100. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9101. impl aya::programs::perf_event::PerfEvent
  9102. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9103. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  9104. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9105. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  9106. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  9107. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  9108. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9109. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  9110. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  9111. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  9112. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  9113. impl core::marker::Freeze for aya::programs::perf_event::PerfEvent
  9114. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  9115. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  9116. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  9117. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  9118. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  9119. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  9120. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  9121. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  9122. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  9123. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9124. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  9125. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  9126. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9127. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + ?core::marker::Sized
  9128. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  9129. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9130. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  9131. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: ?core::marker::Sized
  9132. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  9133. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  9134. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  9135. pub struct aya::programs::ProgramFd(_)
  9136. impl aya::programs::ProgramFd
  9137. pub fn aya::programs::ProgramFd::try_clone(&self) -> std::io::error::Result<Self>
  9138. impl core::fmt::Debug for aya::programs::ProgramFd
  9139. pub fn aya::programs::ProgramFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9140. impl std::os::fd::owned::AsFd for aya::programs::ProgramFd
  9141. pub fn aya::programs::ProgramFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  9142. impl core::marker::Freeze for aya::programs::ProgramFd
  9143. impl core::marker::Send for aya::programs::ProgramFd
  9144. impl core::marker::Sync for aya::programs::ProgramFd
  9145. impl core::marker::Unpin for aya::programs::ProgramFd
  9146. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramFd
  9147. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramFd
  9148. impl<T, U> core::convert::Into<U> for aya::programs::ProgramFd where U: core::convert::From<T>
  9149. pub fn aya::programs::ProgramFd::into(self) -> U
  9150. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramFd where U: core::convert::Into<T>
  9151. pub type aya::programs::ProgramFd::Error = core::convert::Infallible
  9152. pub fn aya::programs::ProgramFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9153. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramFd where U: core::convert::TryFrom<T>
  9154. pub type aya::programs::ProgramFd::Error = <U as core::convert::TryFrom<T>>::Error
  9155. pub fn aya::programs::ProgramFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9156. impl<T> core::any::Any for aya::programs::ProgramFd where T: 'static + ?core::marker::Sized
  9157. pub fn aya::programs::ProgramFd::type_id(&self) -> core::any::TypeId
  9158. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9159. pub fn aya::programs::ProgramFd::borrow(&self) -> &T
  9160. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramFd where T: ?core::marker::Sized
  9161. pub fn aya::programs::ProgramFd::borrow_mut(&mut self) -> &mut T
  9162. impl<T> core::convert::From<T> for aya::programs::ProgramFd
  9163. pub fn aya::programs::ProgramFd::from(t: T) -> T
  9164. pub struct aya::programs::ProgramId(_)
  9165. impl aya::programs::ProgramId
  9166. pub unsafe fn aya::programs::ProgramId::new(id: u32) -> Self
  9167. impl core::marker::Freeze for aya::programs::ProgramId
  9168. impl core::marker::Send for aya::programs::ProgramId
  9169. impl core::marker::Sync for aya::programs::ProgramId
  9170. impl core::marker::Unpin for aya::programs::ProgramId
  9171. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramId
  9172. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramId
  9173. impl<T, U> core::convert::Into<U> for aya::programs::ProgramId where U: core::convert::From<T>
  9174. pub fn aya::programs::ProgramId::into(self) -> U
  9175. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramId where U: core::convert::Into<T>
  9176. pub type aya::programs::ProgramId::Error = core::convert::Infallible
  9177. pub fn aya::programs::ProgramId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9178. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramId where U: core::convert::TryFrom<T>
  9179. pub type aya::programs::ProgramId::Error = <U as core::convert::TryFrom<T>>::Error
  9180. pub fn aya::programs::ProgramId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9181. impl<T> core::any::Any for aya::programs::ProgramId where T: 'static + ?core::marker::Sized
  9182. pub fn aya::programs::ProgramId::type_id(&self) -> core::any::TypeId
  9183. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9184. pub fn aya::programs::ProgramId::borrow(&self) -> &T
  9185. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramId where T: ?core::marker::Sized
  9186. pub fn aya::programs::ProgramId::borrow_mut(&mut self) -> &mut T
  9187. impl<T> core::convert::From<T> for aya::programs::ProgramId
  9188. pub fn aya::programs::ProgramId::from(t: T) -> T
  9189. pub struct aya::programs::ProgramInfo(_)
  9190. impl aya::programs::ProgramInfo
  9191. pub fn aya::programs::ProgramInfo::btf_id(&self) -> core::option::Option<u32>
  9192. pub fn aya::programs::ProgramInfo::created_by_uid(&self) -> core::option::Option<u32>
  9193. pub fn aya::programs::ProgramInfo::fd(&self) -> core::result::Result<aya::programs::ProgramFd, aya::programs::ProgramError>
  9194. pub fn aya::programs::ProgramInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9195. pub fn aya::programs::ProgramInfo::gpl_compatible(&self) -> core::option::Option<bool>
  9196. pub fn aya::programs::ProgramInfo::id(&self) -> u32
  9197. pub fn aya::programs::ProgramInfo::loaded_at(&self) -> core::option::Option<std::time::SystemTime>
  9198. pub fn aya::programs::ProgramInfo::map_ids(&self) -> core::result::Result<core::option::Option<alloc::vec::Vec<u32>>, aya::programs::ProgramError>
  9199. pub fn aya::programs::ProgramInfo::memory_locked(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  9200. pub fn aya::programs::ProgramInfo::name(&self) -> &[u8]
  9201. pub fn aya::programs::ProgramInfo::name_as_str(&self) -> core::option::Option<&str>
  9202. pub fn aya::programs::ProgramInfo::program_type(&self) -> core::result::Result<aya::programs::ProgramType, aya::programs::ProgramError>
  9203. pub fn aya::programs::ProgramInfo::run_count(&self) -> u64
  9204. pub fn aya::programs::ProgramInfo::run_time(&self) -> core::time::Duration
  9205. pub fn aya::programs::ProgramInfo::size_jitted(&self) -> u32
  9206. pub fn aya::programs::ProgramInfo::size_translated(&self) -> core::option::Option<u32>
  9207. pub fn aya::programs::ProgramInfo::tag(&self) -> u64
  9208. pub fn aya::programs::ProgramInfo::verified_instruction_count(&self) -> core::option::Option<u32>
  9209. impl core::fmt::Debug for aya::programs::ProgramInfo
  9210. pub fn aya::programs::ProgramInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9211. impl core::marker::Freeze for aya::programs::ProgramInfo
  9212. impl core::marker::Send for aya::programs::ProgramInfo
  9213. impl core::marker::Sync for aya::programs::ProgramInfo
  9214. impl core::marker::Unpin for aya::programs::ProgramInfo
  9215. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramInfo
  9216. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramInfo
  9217. impl<T, U> core::convert::Into<U> for aya::programs::ProgramInfo where U: core::convert::From<T>
  9218. pub fn aya::programs::ProgramInfo::into(self) -> U
  9219. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramInfo where U: core::convert::Into<T>
  9220. pub type aya::programs::ProgramInfo::Error = core::convert::Infallible
  9221. pub fn aya::programs::ProgramInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9222. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramInfo where U: core::convert::TryFrom<T>
  9223. pub type aya::programs::ProgramInfo::Error = <U as core::convert::TryFrom<T>>::Error
  9224. pub fn aya::programs::ProgramInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9225. impl<T> core::any::Any for aya::programs::ProgramInfo where T: 'static + ?core::marker::Sized
  9226. pub fn aya::programs::ProgramInfo::type_id(&self) -> core::any::TypeId
  9227. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9228. pub fn aya::programs::ProgramInfo::borrow(&self) -> &T
  9229. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramInfo where T: ?core::marker::Sized
  9230. pub fn aya::programs::ProgramInfo::borrow_mut(&mut self) -> &mut T
  9231. impl<T> core::convert::From<T> for aya::programs::ProgramInfo
  9232. pub fn aya::programs::ProgramInfo::from(t: T) -> T
  9233. pub struct aya::programs::RawTracePoint
  9234. impl aya::programs::raw_trace_point::RawTracePoint
  9235. pub const aya::programs::raw_trace_point::RawTracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9236. pub fn aya::programs::raw_trace_point::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLinkId, aya::programs::ProgramError>
  9237. pub fn aya::programs::raw_trace_point::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9238. impl aya::programs::raw_trace_point::RawTracePoint
  9239. pub fn aya::programs::raw_trace_point::RawTracePoint::detach(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9240. pub fn aya::programs::raw_trace_point::RawTracePoint::take_link(&mut self, link_id: aya::programs::raw_trace_point::RawTracePointLinkId) -> core::result::Result<aya::programs::raw_trace_point::RawTracePointLink, aya::programs::ProgramError>
  9241. impl aya::programs::raw_trace_point::RawTracePoint
  9242. pub fn aya::programs::raw_trace_point::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9243. impl aya::programs::raw_trace_point::RawTracePoint
  9244. pub fn aya::programs::raw_trace_point::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9245. impl aya::programs::raw_trace_point::RawTracePoint
  9246. pub fn aya::programs::raw_trace_point::RawTracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9247. impl aya::programs::raw_trace_point::RawTracePoint
  9248. pub fn aya::programs::raw_trace_point::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9249. impl aya::programs::raw_trace_point::RawTracePoint
  9250. pub fn aya::programs::raw_trace_point::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9251. pub fn aya::programs::raw_trace_point::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9252. impl aya::programs::raw_trace_point::RawTracePoint
  9253. pub fn aya::programs::raw_trace_point::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9254. impl core::fmt::Debug for aya::programs::raw_trace_point::RawTracePoint
  9255. pub fn aya::programs::raw_trace_point::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9256. impl core::ops::drop::Drop for aya::programs::raw_trace_point::RawTracePoint
  9257. pub fn aya::programs::raw_trace_point::RawTracePoint::drop(&mut self)
  9258. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::raw_trace_point::RawTracePoint
  9259. pub type &'a aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9260. pub fn &'a aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9261. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::raw_trace_point::RawTracePoint
  9262. pub type &'a mut aya::programs::raw_trace_point::RawTracePoint::Error = aya::programs::ProgramError
  9263. pub fn &'a mut aya::programs::raw_trace_point::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::raw_trace_point::RawTracePoint, aya::programs::ProgramError>
  9264. impl core::marker::Freeze for aya::programs::raw_trace_point::RawTracePoint
  9265. impl core::marker::Send for aya::programs::raw_trace_point::RawTracePoint
  9266. impl core::marker::Sync for aya::programs::raw_trace_point::RawTracePoint
  9267. impl core::marker::Unpin for aya::programs::raw_trace_point::RawTracePoint
  9268. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9269. impl core::panic::unwind_safe::UnwindSafe for aya::programs::raw_trace_point::RawTracePoint
  9270. impl<T, U> core::convert::Into<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::From<T>
  9271. pub fn aya::programs::raw_trace_point::RawTracePoint::into(self) -> U
  9272. impl<T, U> core::convert::TryFrom<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::Into<T>
  9273. pub type aya::programs::raw_trace_point::RawTracePoint::Error = core::convert::Infallible
  9274. pub fn aya::programs::raw_trace_point::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9275. impl<T, U> core::convert::TryInto<U> for aya::programs::raw_trace_point::RawTracePoint where U: core::convert::TryFrom<T>
  9276. pub type aya::programs::raw_trace_point::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9277. pub fn aya::programs::raw_trace_point::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9278. impl<T> core::any::Any for aya::programs::raw_trace_point::RawTracePoint where T: 'static + ?core::marker::Sized
  9279. pub fn aya::programs::raw_trace_point::RawTracePoint::type_id(&self) -> core::any::TypeId
  9280. impl<T> core::borrow::Borrow<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9281. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow(&self) -> &T
  9282. impl<T> core::borrow::BorrowMut<T> for aya::programs::raw_trace_point::RawTracePoint where T: ?core::marker::Sized
  9283. pub fn aya::programs::raw_trace_point::RawTracePoint::borrow_mut(&mut self) -> &mut T
  9284. impl<T> core::convert::From<T> for aya::programs::raw_trace_point::RawTracePoint
  9285. pub fn aya::programs::raw_trace_point::RawTracePoint::from(t: T) -> T
  9286. pub struct aya::programs::SchedClassifier
  9287. impl aya::programs::tc::SchedClassifier
  9288. pub const aya::programs::tc::SchedClassifier::PROGRAM_TYPE: aya::programs::ProgramType
  9289. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9290. pub fn aya::programs::tc::SchedClassifier::attach_to_link(&mut self, link: aya::programs::tc::SchedClassifierLink) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9291. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcAttachOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  9292. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9293. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9294. pub fn aya::programs::tc::SchedClassifier::query_tcx(interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<(u64, alloc::vec::Vec<aya::programs::ProgramInfo>), aya::programs::ProgramError>
  9295. impl aya::programs::tc::SchedClassifier
  9296. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9297. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  9298. impl aya::programs::tc::SchedClassifier
  9299. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9300. impl aya::programs::tc::SchedClassifier
  9301. pub fn aya::programs::tc::SchedClassifier::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9302. impl aya::programs::tc::SchedClassifier
  9303. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9304. impl aya::programs::tc::SchedClassifier
  9305. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9306. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9307. impl aya::programs::tc::SchedClassifier
  9308. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9309. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  9310. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  9311. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  9312. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9313. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  9314. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  9315. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  9316. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9317. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  9318. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  9319. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  9320. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  9321. impl core::marker::Freeze for aya::programs::tc::SchedClassifier
  9322. impl core::marker::Send for aya::programs::tc::SchedClassifier
  9323. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  9324. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  9325. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  9326. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  9327. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  9328. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  9329. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  9330. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  9331. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9332. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  9333. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  9334. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9335. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + ?core::marker::Sized
  9336. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  9337. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9338. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  9339. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: ?core::marker::Sized
  9340. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  9341. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  9342. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  9343. pub struct aya::programs::SkLookup
  9344. impl aya::programs::sk_lookup::SkLookup
  9345. pub const aya::programs::sk_lookup::SkLookup::PROGRAM_TYPE: aya::programs::ProgramType
  9346. pub fn aya::programs::sk_lookup::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<aya::programs::sk_lookup::SkLookupLinkId, aya::programs::ProgramError>
  9347. pub fn aya::programs::sk_lookup::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9348. impl aya::programs::sk_lookup::SkLookup
  9349. pub fn aya::programs::sk_lookup::SkLookup::detach(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9350. pub fn aya::programs::sk_lookup::SkLookup::take_link(&mut self, link_id: aya::programs::sk_lookup::SkLookupLinkId) -> core::result::Result<aya::programs::sk_lookup::SkLookupLink, aya::programs::ProgramError>
  9351. impl aya::programs::sk_lookup::SkLookup
  9352. pub fn aya::programs::sk_lookup::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9353. impl aya::programs::sk_lookup::SkLookup
  9354. pub fn aya::programs::sk_lookup::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9355. impl aya::programs::sk_lookup::SkLookup
  9356. pub fn aya::programs::sk_lookup::SkLookup::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9357. impl aya::programs::sk_lookup::SkLookup
  9358. pub fn aya::programs::sk_lookup::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9359. impl aya::programs::sk_lookup::SkLookup
  9360. pub fn aya::programs::sk_lookup::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9361. pub fn aya::programs::sk_lookup::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9362. impl aya::programs::sk_lookup::SkLookup
  9363. pub fn aya::programs::sk_lookup::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9364. impl core::fmt::Debug for aya::programs::sk_lookup::SkLookup
  9365. pub fn aya::programs::sk_lookup::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9366. impl core::ops::drop::Drop for aya::programs::sk_lookup::SkLookup
  9367. pub fn aya::programs::sk_lookup::SkLookup::drop(&mut self)
  9368. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_lookup::SkLookup
  9369. pub type &'a aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9370. pub fn &'a aya::programs::sk_lookup::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9371. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_lookup::SkLookup
  9372. pub type &'a mut aya::programs::sk_lookup::SkLookup::Error = aya::programs::ProgramError
  9373. pub fn &'a mut aya::programs::sk_lookup::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_lookup::SkLookup, aya::programs::ProgramError>
  9374. impl core::marker::Freeze for aya::programs::sk_lookup::SkLookup
  9375. impl core::marker::Send for aya::programs::sk_lookup::SkLookup
  9376. impl core::marker::Sync for aya::programs::sk_lookup::SkLookup
  9377. impl core::marker::Unpin for aya::programs::sk_lookup::SkLookup
  9378. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_lookup::SkLookup
  9379. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_lookup::SkLookup
  9380. impl<T, U> core::convert::Into<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::From<T>
  9381. pub fn aya::programs::sk_lookup::SkLookup::into(self) -> U
  9382. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::Into<T>
  9383. pub type aya::programs::sk_lookup::SkLookup::Error = core::convert::Infallible
  9384. pub fn aya::programs::sk_lookup::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9385. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_lookup::SkLookup where U: core::convert::TryFrom<T>
  9386. pub type aya::programs::sk_lookup::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  9387. pub fn aya::programs::sk_lookup::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9388. impl<T> core::any::Any for aya::programs::sk_lookup::SkLookup where T: 'static + ?core::marker::Sized
  9389. pub fn aya::programs::sk_lookup::SkLookup::type_id(&self) -> core::any::TypeId
  9390. impl<T> core::borrow::Borrow<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9391. pub fn aya::programs::sk_lookup::SkLookup::borrow(&self) -> &T
  9392. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_lookup::SkLookup where T: ?core::marker::Sized
  9393. pub fn aya::programs::sk_lookup::SkLookup::borrow_mut(&mut self) -> &mut T
  9394. impl<T> core::convert::From<T> for aya::programs::sk_lookup::SkLookup
  9395. pub fn aya::programs::sk_lookup::SkLookup::from(t: T) -> T
  9396. pub struct aya::programs::SkMsg
  9397. impl aya::programs::sk_msg::SkMsg
  9398. pub const aya::programs::sk_msg::SkMsg::PROGRAM_TYPE: aya::programs::ProgramType
  9399. pub fn aya::programs::sk_msg::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_msg::SkMsgLinkId, aya::programs::ProgramError>
  9400. pub fn aya::programs::sk_msg::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9401. impl aya::programs::sk_msg::SkMsg
  9402. pub fn aya::programs::sk_msg::SkMsg::detach(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9403. pub fn aya::programs::sk_msg::SkMsg::take_link(&mut self, link_id: aya::programs::sk_msg::SkMsgLinkId) -> core::result::Result<aya::programs::sk_msg::SkMsgLink, aya::programs::ProgramError>
  9404. impl aya::programs::sk_msg::SkMsg
  9405. pub fn aya::programs::sk_msg::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9406. impl aya::programs::sk_msg::SkMsg
  9407. pub fn aya::programs::sk_msg::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9408. impl aya::programs::sk_msg::SkMsg
  9409. pub fn aya::programs::sk_msg::SkMsg::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9410. impl aya::programs::sk_msg::SkMsg
  9411. pub fn aya::programs::sk_msg::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9412. impl aya::programs::sk_msg::SkMsg
  9413. pub fn aya::programs::sk_msg::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9414. pub fn aya::programs::sk_msg::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9415. impl aya::programs::sk_msg::SkMsg
  9416. pub fn aya::programs::sk_msg::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9417. impl core::fmt::Debug for aya::programs::sk_msg::SkMsg
  9418. pub fn aya::programs::sk_msg::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9419. impl core::ops::drop::Drop for aya::programs::sk_msg::SkMsg
  9420. pub fn aya::programs::sk_msg::SkMsg::drop(&mut self)
  9421. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_msg::SkMsg
  9422. pub type &'a aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9423. pub fn &'a aya::programs::sk_msg::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9424. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_msg::SkMsg
  9425. pub type &'a mut aya::programs::sk_msg::SkMsg::Error = aya::programs::ProgramError
  9426. pub fn &'a mut aya::programs::sk_msg::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_msg::SkMsg, aya::programs::ProgramError>
  9427. impl core::marker::Freeze for aya::programs::sk_msg::SkMsg
  9428. impl core::marker::Send for aya::programs::sk_msg::SkMsg
  9429. impl core::marker::Sync for aya::programs::sk_msg::SkMsg
  9430. impl core::marker::Unpin for aya::programs::sk_msg::SkMsg
  9431. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_msg::SkMsg
  9432. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_msg::SkMsg
  9433. impl<T, U> core::convert::Into<U> for aya::programs::sk_msg::SkMsg where U: core::convert::From<T>
  9434. pub fn aya::programs::sk_msg::SkMsg::into(self) -> U
  9435. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_msg::SkMsg where U: core::convert::Into<T>
  9436. pub type aya::programs::sk_msg::SkMsg::Error = core::convert::Infallible
  9437. pub fn aya::programs::sk_msg::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9438. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_msg::SkMsg where U: core::convert::TryFrom<T>
  9439. pub type aya::programs::sk_msg::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  9440. pub fn aya::programs::sk_msg::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9441. impl<T> core::any::Any for aya::programs::sk_msg::SkMsg where T: 'static + ?core::marker::Sized
  9442. pub fn aya::programs::sk_msg::SkMsg::type_id(&self) -> core::any::TypeId
  9443. impl<T> core::borrow::Borrow<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9444. pub fn aya::programs::sk_msg::SkMsg::borrow(&self) -> &T
  9445. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_msg::SkMsg where T: ?core::marker::Sized
  9446. pub fn aya::programs::sk_msg::SkMsg::borrow_mut(&mut self) -> &mut T
  9447. impl<T> core::convert::From<T> for aya::programs::sk_msg::SkMsg
  9448. pub fn aya::programs::sk_msg::SkMsg::from(t: T) -> T
  9449. pub struct aya::programs::SkSkb
  9450. impl aya::programs::sk_skb::SkSkb
  9451. pub const aya::programs::sk_skb::SkSkb::PROGRAM_TYPE: aya::programs::ProgramType
  9452. pub fn aya::programs::sk_skb::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<aya::programs::sk_skb::SkSkbLinkId, aya::programs::ProgramError>
  9453. pub fn aya::programs::sk_skb::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9454. pub fn aya::programs::sk_skb::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9455. impl aya::programs::sk_skb::SkSkb
  9456. pub fn aya::programs::sk_skb::SkSkb::detach(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9457. pub fn aya::programs::sk_skb::SkSkb::take_link(&mut self, link_id: aya::programs::sk_skb::SkSkbLinkId) -> core::result::Result<aya::programs::sk_skb::SkSkbLink, aya::programs::ProgramError>
  9458. impl aya::programs::sk_skb::SkSkb
  9459. pub fn aya::programs::sk_skb::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9460. impl aya::programs::sk_skb::SkSkb
  9461. pub fn aya::programs::sk_skb::SkSkb::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::sk_skb::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9462. impl aya::programs::sk_skb::SkSkb
  9463. pub fn aya::programs::sk_skb::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9464. impl aya::programs::sk_skb::SkSkb
  9465. pub fn aya::programs::sk_skb::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9466. pub fn aya::programs::sk_skb::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9467. impl aya::programs::sk_skb::SkSkb
  9468. pub fn aya::programs::sk_skb::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9469. impl core::fmt::Debug for aya::programs::sk_skb::SkSkb
  9470. pub fn aya::programs::sk_skb::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9471. impl core::ops::drop::Drop for aya::programs::sk_skb::SkSkb
  9472. pub fn aya::programs::sk_skb::SkSkb::drop(&mut self)
  9473. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sk_skb::SkSkb
  9474. pub type &'a aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9475. pub fn &'a aya::programs::sk_skb::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9476. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sk_skb::SkSkb
  9477. pub type &'a mut aya::programs::sk_skb::SkSkb::Error = aya::programs::ProgramError
  9478. pub fn &'a mut aya::programs::sk_skb::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sk_skb::SkSkb, aya::programs::ProgramError>
  9479. impl core::marker::Freeze for aya::programs::sk_skb::SkSkb
  9480. impl core::marker::Send for aya::programs::sk_skb::SkSkb
  9481. impl core::marker::Sync for aya::programs::sk_skb::SkSkb
  9482. impl core::marker::Unpin for aya::programs::sk_skb::SkSkb
  9483. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sk_skb::SkSkb
  9484. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sk_skb::SkSkb
  9485. impl<T, U> core::convert::Into<U> for aya::programs::sk_skb::SkSkb where U: core::convert::From<T>
  9486. pub fn aya::programs::sk_skb::SkSkb::into(self) -> U
  9487. impl<T, U> core::convert::TryFrom<U> for aya::programs::sk_skb::SkSkb where U: core::convert::Into<T>
  9488. pub type aya::programs::sk_skb::SkSkb::Error = core::convert::Infallible
  9489. pub fn aya::programs::sk_skb::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9490. impl<T, U> core::convert::TryInto<U> for aya::programs::sk_skb::SkSkb where U: core::convert::TryFrom<T>
  9491. pub type aya::programs::sk_skb::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  9492. pub fn aya::programs::sk_skb::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9493. impl<T> core::any::Any for aya::programs::sk_skb::SkSkb where T: 'static + ?core::marker::Sized
  9494. pub fn aya::programs::sk_skb::SkSkb::type_id(&self) -> core::any::TypeId
  9495. impl<T> core::borrow::Borrow<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9496. pub fn aya::programs::sk_skb::SkSkb::borrow(&self) -> &T
  9497. impl<T> core::borrow::BorrowMut<T> for aya::programs::sk_skb::SkSkb where T: ?core::marker::Sized
  9498. pub fn aya::programs::sk_skb::SkSkb::borrow_mut(&mut self) -> &mut T
  9499. impl<T> core::convert::From<T> for aya::programs::sk_skb::SkSkb
  9500. pub fn aya::programs::sk_skb::SkSkb::from(t: T) -> T
  9501. pub struct aya::programs::SockOps
  9502. impl aya::programs::sock_ops::SockOps
  9503. pub const aya::programs::sock_ops::SockOps::PROGRAM_TYPE: aya::programs::ProgramType
  9504. pub fn aya::programs::sock_ops::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, mode: aya::programs::links::CgroupAttachMode) -> core::result::Result<aya::programs::sock_ops::SockOpsLinkId, aya::programs::ProgramError>
  9505. pub fn aya::programs::sock_ops::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9506. impl aya::programs::sock_ops::SockOps
  9507. pub fn aya::programs::sock_ops::SockOps::detach(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9508. pub fn aya::programs::sock_ops::SockOps::take_link(&mut self, link_id: aya::programs::sock_ops::SockOpsLinkId) -> core::result::Result<aya::programs::sock_ops::SockOpsLink, aya::programs::ProgramError>
  9509. impl aya::programs::sock_ops::SockOps
  9510. pub fn aya::programs::sock_ops::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9511. impl aya::programs::sock_ops::SockOps
  9512. pub fn aya::programs::sock_ops::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9513. impl aya::programs::sock_ops::SockOps
  9514. pub fn aya::programs::sock_ops::SockOps::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9515. impl aya::programs::sock_ops::SockOps
  9516. pub fn aya::programs::sock_ops::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9517. impl aya::programs::sock_ops::SockOps
  9518. pub fn aya::programs::sock_ops::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9519. pub fn aya::programs::sock_ops::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9520. impl aya::programs::sock_ops::SockOps
  9521. pub fn aya::programs::sock_ops::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9522. impl core::fmt::Debug for aya::programs::sock_ops::SockOps
  9523. pub fn aya::programs::sock_ops::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9524. impl core::ops::drop::Drop for aya::programs::sock_ops::SockOps
  9525. pub fn aya::programs::sock_ops::SockOps::drop(&mut self)
  9526. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::sock_ops::SockOps
  9527. pub type &'a aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9528. pub fn &'a aya::programs::sock_ops::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9529. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::sock_ops::SockOps
  9530. pub type &'a mut aya::programs::sock_ops::SockOps::Error = aya::programs::ProgramError
  9531. pub fn &'a mut aya::programs::sock_ops::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::sock_ops::SockOps, aya::programs::ProgramError>
  9532. impl core::marker::Freeze for aya::programs::sock_ops::SockOps
  9533. impl core::marker::Send for aya::programs::sock_ops::SockOps
  9534. impl core::marker::Sync for aya::programs::sock_ops::SockOps
  9535. impl core::marker::Unpin for aya::programs::sock_ops::SockOps
  9536. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::sock_ops::SockOps
  9537. impl core::panic::unwind_safe::UnwindSafe for aya::programs::sock_ops::SockOps
  9538. impl<T, U> core::convert::Into<U> for aya::programs::sock_ops::SockOps where U: core::convert::From<T>
  9539. pub fn aya::programs::sock_ops::SockOps::into(self) -> U
  9540. impl<T, U> core::convert::TryFrom<U> for aya::programs::sock_ops::SockOps where U: core::convert::Into<T>
  9541. pub type aya::programs::sock_ops::SockOps::Error = core::convert::Infallible
  9542. pub fn aya::programs::sock_ops::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9543. impl<T, U> core::convert::TryInto<U> for aya::programs::sock_ops::SockOps where U: core::convert::TryFrom<T>
  9544. pub type aya::programs::sock_ops::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  9545. pub fn aya::programs::sock_ops::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9546. impl<T> core::any::Any for aya::programs::sock_ops::SockOps where T: 'static + ?core::marker::Sized
  9547. pub fn aya::programs::sock_ops::SockOps::type_id(&self) -> core::any::TypeId
  9548. impl<T> core::borrow::Borrow<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9549. pub fn aya::programs::sock_ops::SockOps::borrow(&self) -> &T
  9550. impl<T> core::borrow::BorrowMut<T> for aya::programs::sock_ops::SockOps where T: ?core::marker::Sized
  9551. pub fn aya::programs::sock_ops::SockOps::borrow_mut(&mut self) -> &mut T
  9552. impl<T> core::convert::From<T> for aya::programs::sock_ops::SockOps
  9553. pub fn aya::programs::sock_ops::SockOps::from(t: T) -> T
  9554. pub struct aya::programs::SocketFilter
  9555. impl aya::programs::socket_filter::SocketFilter
  9556. pub const aya::programs::socket_filter::SocketFilter::PROGRAM_TYPE: aya::programs::ProgramType
  9557. pub fn aya::programs::socket_filter::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<aya::programs::socket_filter::SocketFilterLinkId, aya::programs::ProgramError>
  9558. pub fn aya::programs::socket_filter::SocketFilter::detach(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9559. pub fn aya::programs::socket_filter::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9560. pub fn aya::programs::socket_filter::SocketFilter::take_link(&mut self, link_id: aya::programs::socket_filter::SocketFilterLinkId) -> core::result::Result<aya::programs::socket_filter::SocketFilterLink, aya::programs::ProgramError>
  9561. impl aya::programs::socket_filter::SocketFilter
  9562. pub fn aya::programs::socket_filter::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9563. impl aya::programs::socket_filter::SocketFilter
  9564. pub fn aya::programs::socket_filter::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9565. impl aya::programs::socket_filter::SocketFilter
  9566. pub fn aya::programs::socket_filter::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9567. impl aya::programs::socket_filter::SocketFilter
  9568. pub fn aya::programs::socket_filter::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9569. pub fn aya::programs::socket_filter::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9570. impl aya::programs::socket_filter::SocketFilter
  9571. pub fn aya::programs::socket_filter::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9572. impl core::fmt::Debug for aya::programs::socket_filter::SocketFilter
  9573. pub fn aya::programs::socket_filter::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9574. impl core::ops::drop::Drop for aya::programs::socket_filter::SocketFilter
  9575. pub fn aya::programs::socket_filter::SocketFilter::drop(&mut self)
  9576. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::socket_filter::SocketFilter
  9577. pub type &'a aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9578. pub fn &'a aya::programs::socket_filter::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9579. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::socket_filter::SocketFilter
  9580. pub type &'a mut aya::programs::socket_filter::SocketFilter::Error = aya::programs::ProgramError
  9581. pub fn &'a mut aya::programs::socket_filter::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::socket_filter::SocketFilter, aya::programs::ProgramError>
  9582. impl core::marker::Freeze for aya::programs::socket_filter::SocketFilter
  9583. impl core::marker::Send for aya::programs::socket_filter::SocketFilter
  9584. impl core::marker::Sync for aya::programs::socket_filter::SocketFilter
  9585. impl core::marker::Unpin for aya::programs::socket_filter::SocketFilter
  9586. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::socket_filter::SocketFilter
  9587. impl core::panic::unwind_safe::UnwindSafe for aya::programs::socket_filter::SocketFilter
  9588. impl<T, U> core::convert::Into<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::From<T>
  9589. pub fn aya::programs::socket_filter::SocketFilter::into(self) -> U
  9590. impl<T, U> core::convert::TryFrom<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::Into<T>
  9591. pub type aya::programs::socket_filter::SocketFilter::Error = core::convert::Infallible
  9592. pub fn aya::programs::socket_filter::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9593. impl<T, U> core::convert::TryInto<U> for aya::programs::socket_filter::SocketFilter where U: core::convert::TryFrom<T>
  9594. pub type aya::programs::socket_filter::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  9595. pub fn aya::programs::socket_filter::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9596. impl<T> core::any::Any for aya::programs::socket_filter::SocketFilter where T: 'static + ?core::marker::Sized
  9597. pub fn aya::programs::socket_filter::SocketFilter::type_id(&self) -> core::any::TypeId
  9598. impl<T> core::borrow::Borrow<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9599. pub fn aya::programs::socket_filter::SocketFilter::borrow(&self) -> &T
  9600. impl<T> core::borrow::BorrowMut<T> for aya::programs::socket_filter::SocketFilter where T: ?core::marker::Sized
  9601. pub fn aya::programs::socket_filter::SocketFilter::borrow_mut(&mut self) -> &mut T
  9602. impl<T> core::convert::From<T> for aya::programs::socket_filter::SocketFilter
  9603. pub fn aya::programs::socket_filter::SocketFilter::from(t: T) -> T
  9604. pub struct aya::programs::TracePoint
  9605. impl aya::programs::trace_point::TracePoint
  9606. pub const aya::programs::trace_point::TracePoint::PROGRAM_TYPE: aya::programs::ProgramType
  9607. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  9608. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9609. impl aya::programs::trace_point::TracePoint
  9610. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9611. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  9612. impl aya::programs::trace_point::TracePoint
  9613. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9614. impl aya::programs::trace_point::TracePoint
  9615. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  9616. impl aya::programs::trace_point::TracePoint
  9617. pub fn aya::programs::trace_point::TracePoint::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>) -> core::result::Result<Self, aya::programs::ProgramError>
  9618. impl aya::programs::trace_point::TracePoint
  9619. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9620. impl aya::programs::trace_point::TracePoint
  9621. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9622. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9623. impl aya::programs::trace_point::TracePoint
  9624. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9625. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  9626. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9627. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  9628. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  9629. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  9630. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9631. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  9632. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  9633. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  9634. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  9635. impl core::marker::Freeze for aya::programs::trace_point::TracePoint
  9636. impl core::marker::Send for aya::programs::trace_point::TracePoint
  9637. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  9638. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  9639. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  9640. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  9641. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  9642. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  9643. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  9644. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  9645. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9646. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  9647. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  9648. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9649. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + ?core::marker::Sized
  9650. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  9651. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9652. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  9653. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: ?core::marker::Sized
  9654. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  9655. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  9656. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  9657. pub struct aya::programs::UProbe
  9658. impl aya::programs::uprobe::UProbe
  9659. pub const aya::programs::uprobe::UProbe::PROGRAM_TYPE: aya::programs::ProgramType
  9660. pub fn aya::programs::uprobe::UProbe::attach<'loc, T: core::convert::AsRef<std::path::Path>, Loc: core::convert::Into<aya::programs::uprobe::UProbeAttachLocation<'loc>>>(&mut self, location: Loc, target: T, pid: core::option::Option<libc::unix::pid_t>, cookie: core::option::Option<u64>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  9661. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9662. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  9663. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9664. impl aya::programs::uprobe::UProbe
  9665. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9666. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  9667. impl aya::programs::uprobe::UProbe
  9668. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9669. impl aya::programs::uprobe::UProbe
  9670. pub unsafe fn aya::programs::uprobe::UProbe::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  9671. impl aya::programs::uprobe::UProbe
  9672. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9673. impl aya::programs::uprobe::UProbe
  9674. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9675. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9676. impl aya::programs::uprobe::UProbe
  9677. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9678. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  9679. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9680. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  9681. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  9682. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  9683. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9684. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  9685. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  9686. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  9687. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  9688. impl core::marker::Freeze for aya::programs::uprobe::UProbe
  9689. impl core::marker::Send for aya::programs::uprobe::UProbe
  9690. impl core::marker::Sync for aya::programs::uprobe::UProbe
  9691. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  9692. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  9693. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  9694. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  9695. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  9696. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  9697. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  9698. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9699. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  9700. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  9701. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9702. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + ?core::marker::Sized
  9703. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  9704. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9705. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  9706. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: ?core::marker::Sized
  9707. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  9708. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  9709. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  9710. pub struct aya::programs::Xdp
  9711. impl aya::programs::xdp::Xdp
  9712. pub const aya::programs::xdp::Xdp::PROGRAM_TYPE: aya::programs::ProgramType
  9713. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9714. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9715. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  9716. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  9717. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9718. impl aya::programs::xdp::Xdp
  9719. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  9720. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  9721. impl aya::programs::xdp::Xdp
  9722. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  9723. impl aya::programs::xdp::Xdp
  9724. pub fn aya::programs::xdp::Xdp::from_program_info(info: aya::programs::ProgramInfo, name: alloc::borrow::Cow<'static, str>, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  9725. impl aya::programs::xdp::Xdp
  9726. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  9727. impl aya::programs::xdp::Xdp
  9728. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  9729. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  9730. impl aya::programs::xdp::Xdp
  9731. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  9732. impl core::fmt::Debug for aya::programs::xdp::Xdp
  9733. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9734. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  9735. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  9736. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  9737. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9738. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  9739. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  9740. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  9741. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  9742. impl core::marker::Freeze for aya::programs::xdp::Xdp
  9743. impl core::marker::Send for aya::programs::xdp::Xdp
  9744. impl core::marker::Sync for aya::programs::xdp::Xdp
  9745. impl core::marker::Unpin for aya::programs::xdp::Xdp
  9746. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  9747. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  9748. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  9749. pub fn aya::programs::xdp::Xdp::into(self) -> U
  9750. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  9751. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  9752. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9753. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  9754. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  9755. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9756. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + ?core::marker::Sized
  9757. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  9758. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9759. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  9760. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: ?core::marker::Sized
  9761. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  9762. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  9763. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  9764. pub struct aya::programs::XdpFlags(_)
  9765. impl aya::programs::xdp::XdpFlags
  9766. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  9767. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  9768. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  9769. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  9770. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  9771. impl aya::programs::xdp::XdpFlags
  9772. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  9773. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9774. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  9775. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  9776. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  9777. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  9778. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  9779. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  9780. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  9781. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  9782. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  9783. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  9784. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  9785. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  9786. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  9787. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  9788. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  9789. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  9790. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  9791. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  9792. impl aya::programs::xdp::XdpFlags
  9793. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9794. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  9795. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  9796. pub type aya::programs::xdp::XdpFlags::Bits = u32
  9797. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  9798. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  9799. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  9800. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  9801. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  9802. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  9803. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  9804. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  9805. impl core::default::Default for aya::programs::xdp::XdpFlags
  9806. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  9807. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  9808. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9809. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  9810. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9811. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  9812. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9813. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  9814. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9815. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  9816. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  9817. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9818. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  9819. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  9820. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  9821. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  9822. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  9823. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  9824. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  9825. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  9826. impl core::ops::arith::Sub for aya::programs::xdp::XdpFlags
  9827. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9828. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  9829. impl core::ops::arith::SubAssign for aya::programs::xdp::XdpFlags
  9830. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  9831. impl core::ops::bit::BitAnd for aya::programs::xdp::XdpFlags
  9832. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9833. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  9834. impl core::ops::bit::BitAndAssign for aya::programs::xdp::XdpFlags
  9835. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  9836. impl core::ops::bit::BitOr for aya::programs::xdp::XdpFlags
  9837. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9838. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  9839. impl core::ops::bit::BitOrAssign for aya::programs::xdp::XdpFlags
  9840. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  9841. impl core::ops::bit::BitXor for aya::programs::xdp::XdpFlags
  9842. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9843. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  9844. impl core::ops::bit::BitXorAssign for aya::programs::xdp::XdpFlags
  9845. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  9846. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  9847. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  9848. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  9849. impl core::marker::Freeze for aya::programs::xdp::XdpFlags
  9850. impl core::marker::Send for aya::programs::xdp::XdpFlags
  9851. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  9852. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  9853. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  9854. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  9855. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  9856. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  9857. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  9858. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  9859. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  9860. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  9861. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  9862. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  9863. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9864. pub type aya::programs::xdp::XdpFlags::Owned = T
  9865. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  9866. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  9867. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + ?core::marker::Sized
  9868. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  9869. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9870. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  9871. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: ?core::marker::Sized
  9872. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  9873. impl<T> core::clone::CloneToUninit for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  9874. pub unsafe fn aya::programs::xdp::XdpFlags::clone_to_uninit(&self, dest: *mut u8)
  9875. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  9876. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  9877. pub trait aya::programs::Link: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + 'static
  9878. pub type aya::programs::Link::Id: core::fmt::Debug + core::cmp::Eq + core::hash::Hash + equivalent::Equivalent<Self>
  9879. pub fn aya::programs::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9880. pub fn aya::programs::Link::id(&self) -> Self::Id
  9881. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  9882. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  9883. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9884. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  9885. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  9886. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  9887. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9888. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  9889. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  9890. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  9891. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9892. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  9893. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  9894. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  9895. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9896. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  9897. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  9898. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  9899. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9900. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  9901. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  9902. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  9903. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9904. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  9905. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  9906. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  9907. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9908. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  9909. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  9910. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  9911. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9912. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  9913. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  9914. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  9915. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9916. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  9917. impl aya::programs::links::Link for aya::programs::flow_dissector::FlowDissectorLink
  9918. pub type aya::programs::flow_dissector::FlowDissectorLink::Id = aya::programs::flow_dissector::FlowDissectorLinkId
  9919. pub fn aya::programs::flow_dissector::FlowDissectorLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9920. pub fn aya::programs::flow_dissector::FlowDissectorLink::id(&self) -> Self::Id
  9921. impl aya::programs::links::Link for aya::programs::iter::IterLink
  9922. pub type aya::programs::iter::IterLink::Id = aya::programs::iter::IterLinkId
  9923. pub fn aya::programs::iter::IterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9924. pub fn aya::programs::iter::IterLink::id(&self) -> Self::Id
  9925. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  9926. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  9927. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9928. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  9929. impl aya::programs::links::Link for aya::programs::links::FdLink
  9930. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  9931. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9932. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  9933. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  9934. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  9935. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9936. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  9937. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  9938. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  9939. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9940. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  9941. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  9942. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  9943. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9944. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  9945. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  9946. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  9947. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9948. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  9949. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  9950. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  9951. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9952. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  9953. impl aya::programs::links::Link for aya::programs::raw_trace_point::RawTracePointLink
  9954. pub type aya::programs::raw_trace_point::RawTracePointLink::Id = aya::programs::raw_trace_point::RawTracePointLinkId
  9955. pub fn aya::programs::raw_trace_point::RawTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9956. pub fn aya::programs::raw_trace_point::RawTracePointLink::id(&self) -> Self::Id
  9957. impl aya::programs::links::Link for aya::programs::sk_lookup::SkLookupLink
  9958. pub type aya::programs::sk_lookup::SkLookupLink::Id = aya::programs::sk_lookup::SkLookupLinkId
  9959. pub fn aya::programs::sk_lookup::SkLookupLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9960. pub fn aya::programs::sk_lookup::SkLookupLink::id(&self) -> Self::Id
  9961. impl aya::programs::links::Link for aya::programs::sk_msg::SkMsgLink
  9962. pub type aya::programs::sk_msg::SkMsgLink::Id = aya::programs::sk_msg::SkMsgLinkId
  9963. pub fn aya::programs::sk_msg::SkMsgLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9964. pub fn aya::programs::sk_msg::SkMsgLink::id(&self) -> Self::Id
  9965. impl aya::programs::links::Link for aya::programs::sk_skb::SkSkbLink
  9966. pub type aya::programs::sk_skb::SkSkbLink::Id = aya::programs::sk_skb::SkSkbLinkId
  9967. pub fn aya::programs::sk_skb::SkSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9968. pub fn aya::programs::sk_skb::SkSkbLink::id(&self) -> Self::Id
  9969. impl aya::programs::links::Link for aya::programs::sock_ops::SockOpsLink
  9970. pub type aya::programs::sock_ops::SockOpsLink::Id = aya::programs::sock_ops::SockOpsLinkId
  9971. pub fn aya::programs::sock_ops::SockOpsLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9972. pub fn aya::programs::sock_ops::SockOpsLink::id(&self) -> Self::Id
  9973. impl aya::programs::links::Link for aya::programs::socket_filter::SocketFilterLink
  9974. pub type aya::programs::socket_filter::SocketFilterLink::Id = aya::programs::socket_filter::SocketFilterLinkId
  9975. pub fn aya::programs::socket_filter::SocketFilterLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9976. pub fn aya::programs::socket_filter::SocketFilterLink::id(&self) -> Self::Id
  9977. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  9978. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  9979. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9980. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  9981. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  9982. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  9983. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9984. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  9985. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  9986. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  9987. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9988. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  9989. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  9990. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  9991. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9992. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  9993. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  9994. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  9995. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  9996. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  9997. pub trait aya::programs::MultiProgLink
  9998. pub fn aya::programs::MultiProgLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  9999. impl aya::programs::MultiProgLink for aya::programs::tc::SchedClassifierLink
  10000. pub fn aya::programs::tc::SchedClassifierLink::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::links::LinkError>
  10001. pub trait aya::programs::MultiProgram
  10002. pub fn aya::programs::MultiProgram::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10003. impl aya::programs::MultiProgram for aya::programs::tc::SchedClassifier
  10004. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<std::os::fd::owned::BorrowedFd<'_>, aya::programs::ProgramError>
  10005. pub fn aya::programs::loaded_links() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::links::LinkInfo, aya::programs::links::LinkError>>
  10006. pub fn aya::programs::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>
  10007. pub mod aya::sys
  10008. #[non_exhaustive] pub enum aya::sys::Stats
  10009. pub aya::sys::Stats::RunTime
  10010. impl core::clone::Clone for aya::sys::Stats
  10011. pub fn aya::sys::Stats::clone(&self) -> aya::sys::Stats
  10012. impl core::convert::From<aya::sys::Stats> for aya_obj::generated::linux_bindings_x86_64::bpf_stats_type
  10013. pub fn aya_obj::generated::linux_bindings_x86_64::bpf_stats_type::from(value: aya::sys::Stats) -> Self
  10014. impl core::fmt::Debug for aya::sys::Stats
  10015. pub fn aya::sys::Stats::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10016. impl core::marker::Copy for aya::sys::Stats
  10017. impl core::marker::Freeze for aya::sys::Stats
  10018. impl core::marker::Send for aya::sys::Stats
  10019. impl core::marker::Sync for aya::sys::Stats
  10020. impl core::marker::Unpin for aya::sys::Stats
  10021. impl core::panic::unwind_safe::RefUnwindSafe for aya::sys::Stats
  10022. impl core::panic::unwind_safe::UnwindSafe for aya::sys::Stats
  10023. impl<T, U> core::convert::Into<U> for aya::sys::Stats where U: core::convert::From<T>
  10024. pub fn aya::sys::Stats::into(self) -> U
  10025. impl<T, U> core::convert::TryFrom<U> for aya::sys::Stats where U: core::convert::Into<T>
  10026. pub type aya::sys::Stats::Error = core::convert::Infallible
  10027. pub fn aya::sys::Stats::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10028. impl<T, U> core::convert::TryInto<U> for aya::sys::Stats where U: core::convert::TryFrom<T>
  10029. pub type aya::sys::Stats::Error = <U as core::convert::TryFrom<T>>::Error
  10030. pub fn aya::sys::Stats::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10031. impl<T> alloc::borrow::ToOwned for aya::sys::Stats where T: core::clone::Clone
  10032. pub type aya::sys::Stats::Owned = T
  10033. pub fn aya::sys::Stats::clone_into(&self, target: &mut T)
  10034. pub fn aya::sys::Stats::to_owned(&self) -> T
  10035. impl<T> core::any::Any for aya::sys::Stats where T: 'static + ?core::marker::Sized
  10036. pub fn aya::sys::Stats::type_id(&self) -> core::any::TypeId
  10037. impl<T> core::borrow::Borrow<T> for aya::sys::Stats where T: ?core::marker::Sized
  10038. pub fn aya::sys::Stats::borrow(&self) -> &T
  10039. impl<T> core::borrow::BorrowMut<T> for aya::sys::Stats where T: ?core::marker::Sized
  10040. pub fn aya::sys::Stats::borrow_mut(&mut self) -> &mut T
  10041. impl<T> core::clone::CloneToUninit for aya::sys::Stats where T: core::clone::Clone
  10042. pub unsafe fn aya::sys::Stats::clone_to_uninit(&self, dest: *mut u8)
  10043. impl<T> core::convert::From<T> for aya::sys::Stats
  10044. pub fn aya::sys::Stats::from(t: T) -> T
  10045. pub struct aya::sys::SyscallError
  10046. pub aya::sys::SyscallError::call: &'static str
  10047. pub aya::sys::SyscallError::io_error: std::io::error::Error
  10048. impl core::convert::From<aya::sys::SyscallError> for aya::maps::MapError
  10049. pub fn aya::maps::MapError::from(source: aya::sys::SyscallError) -> Self
  10050. impl core::convert::From<aya::sys::SyscallError> for aya::pin::PinError
  10051. pub fn aya::pin::PinError::from(source: aya::sys::SyscallError) -> Self
  10052. impl core::convert::From<aya::sys::SyscallError> for aya::programs::ProgramError
  10053. pub fn aya::programs::ProgramError::from(source: aya::sys::SyscallError) -> Self
  10054. impl core::convert::From<aya::sys::SyscallError> for aya::programs::links::LinkError
  10055. pub fn aya::programs::links::LinkError::from(source: aya::sys::SyscallError) -> Self
  10056. impl core::error::Error for aya::sys::SyscallError
  10057. pub fn aya::sys::SyscallError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10058. impl core::fmt::Debug for aya::sys::SyscallError
  10059. pub fn aya::sys::SyscallError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10060. impl core::fmt::Display for aya::sys::SyscallError
  10061. pub fn aya::sys::SyscallError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10062. impl core::marker::Freeze for aya::sys::SyscallError
  10063. impl core::marker::Send for aya::sys::SyscallError
  10064. impl core::marker::Sync for aya::sys::SyscallError
  10065. impl core::marker::Unpin for aya::sys::SyscallError
  10066. impl !core::panic::unwind_safe::RefUnwindSafe for aya::sys::SyscallError
  10067. impl !core::panic::unwind_safe::UnwindSafe for aya::sys::SyscallError
  10068. impl<T, U> core::convert::Into<U> for aya::sys::SyscallError where U: core::convert::From<T>
  10069. pub fn aya::sys::SyscallError::into(self) -> U
  10070. impl<T, U> core::convert::TryFrom<U> for aya::sys::SyscallError where U: core::convert::Into<T>
  10071. pub type aya::sys::SyscallError::Error = core::convert::Infallible
  10072. pub fn aya::sys::SyscallError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10073. impl<T, U> core::convert::TryInto<U> for aya::sys::SyscallError where U: core::convert::TryFrom<T>
  10074. pub type aya::sys::SyscallError::Error = <U as core::convert::TryFrom<T>>::Error
  10075. pub fn aya::sys::SyscallError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10076. impl<T> alloc::string::ToString for aya::sys::SyscallError where T: core::fmt::Display + ?core::marker::Sized
  10077. pub fn aya::sys::SyscallError::to_string(&self) -> alloc::string::String
  10078. impl<T> core::any::Any for aya::sys::SyscallError where T: 'static + ?core::marker::Sized
  10079. pub fn aya::sys::SyscallError::type_id(&self) -> core::any::TypeId
  10080. impl<T> core::borrow::Borrow<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10081. pub fn aya::sys::SyscallError::borrow(&self) -> &T
  10082. impl<T> core::borrow::BorrowMut<T> for aya::sys::SyscallError where T: ?core::marker::Sized
  10083. pub fn aya::sys::SyscallError::borrow_mut(&mut self) -> &mut T
  10084. impl<T> core::convert::From<T> for aya::sys::SyscallError
  10085. pub fn aya::sys::SyscallError::from(t: T) -> T
  10086. pub fn aya::sys::enable_stats(stats_type: aya::sys::Stats) -> core::result::Result<std::os::fd::owned::OwnedFd, aya::sys::SyscallError>
  10087. pub fn aya::sys::is_map_supported(map_type: aya::maps::MapType) -> core::result::Result<bool, aya::sys::SyscallError>
  10088. pub fn aya::sys::is_program_supported(program_type: aya::programs::ProgramType) -> core::result::Result<bool, aya::programs::ProgramError>
  10089. pub mod aya::util
  10090. pub struct aya::util::KernelVersion
  10091. impl aya::util::KernelVersion
  10092. pub fn aya::util::KernelVersion::code(self) -> u32
  10093. pub fn aya::util::KernelVersion::current() -> core::result::Result<Self, impl core::error::Error>
  10094. pub fn aya::util::KernelVersion::new(major: u8, minor: u8, patch: u16) -> Self
  10095. impl core::clone::Clone for aya::util::KernelVersion
  10096. pub fn aya::util::KernelVersion::clone(&self) -> aya::util::KernelVersion
  10097. impl core::cmp::Eq for aya::util::KernelVersion
  10098. impl core::cmp::PartialEq for aya::util::KernelVersion
  10099. pub fn aya::util::KernelVersion::eq(&self, other: &aya::util::KernelVersion) -> bool
  10100. impl core::cmp::PartialOrd for aya::util::KernelVersion
  10101. pub fn aya::util::KernelVersion::partial_cmp(&self, other: &aya::util::KernelVersion) -> core::option::Option<core::cmp::Ordering>
  10102. impl core::fmt::Debug for aya::util::KernelVersion
  10103. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10104. impl core::fmt::Display for aya::util::KernelVersion
  10105. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10106. impl core::marker::Copy for aya::util::KernelVersion
  10107. impl core::marker::StructuralPartialEq for aya::util::KernelVersion
  10108. impl core::marker::Freeze for aya::util::KernelVersion
  10109. impl core::marker::Send for aya::util::KernelVersion
  10110. impl core::marker::Sync for aya::util::KernelVersion
  10111. impl core::marker::Unpin for aya::util::KernelVersion
  10112. impl core::panic::unwind_safe::RefUnwindSafe for aya::util::KernelVersion
  10113. impl core::panic::unwind_safe::UnwindSafe for aya::util::KernelVersion
  10114. impl<Q, K> equivalent::Equivalent<K> for aya::util::KernelVersion where Q: core::cmp::Eq + ?core::marker::Sized, K: core::borrow::Borrow<Q> + ?core::marker::Sized
  10115. pub fn aya::util::KernelVersion::equivalent(&self, key: &K) -> bool
  10116. impl<T, U> core::convert::Into<U> for aya::util::KernelVersion where U: core::convert::From<T>
  10117. pub fn aya::util::KernelVersion::into(self) -> U
  10118. impl<T, U> core::convert::TryFrom<U> for aya::util::KernelVersion where U: core::convert::Into<T>
  10119. pub type aya::util::KernelVersion::Error = core::convert::Infallible
  10120. pub fn aya::util::KernelVersion::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10121. impl<T, U> core::convert::TryInto<U> for aya::util::KernelVersion where U: core::convert::TryFrom<T>
  10122. pub type aya::util::KernelVersion::Error = <U as core::convert::TryFrom<T>>::Error
  10123. pub fn aya::util::KernelVersion::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10124. impl<T> alloc::borrow::ToOwned for aya::util::KernelVersion where T: core::clone::Clone
  10125. pub type aya::util::KernelVersion::Owned = T
  10126. pub fn aya::util::KernelVersion::clone_into(&self, target: &mut T)
  10127. pub fn aya::util::KernelVersion::to_owned(&self) -> T
  10128. impl<T> alloc::string::ToString for aya::util::KernelVersion where T: core::fmt::Display + ?core::marker::Sized
  10129. pub fn aya::util::KernelVersion::to_string(&self) -> alloc::string::String
  10130. impl<T> core::any::Any for aya::util::KernelVersion where T: 'static + ?core::marker::Sized
  10131. pub fn aya::util::KernelVersion::type_id(&self) -> core::any::TypeId
  10132. impl<T> core::borrow::Borrow<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10133. pub fn aya::util::KernelVersion::borrow(&self) -> &T
  10134. impl<T> core::borrow::BorrowMut<T> for aya::util::KernelVersion where T: ?core::marker::Sized
  10135. pub fn aya::util::KernelVersion::borrow_mut(&mut self) -> &mut T
  10136. impl<T> core::clone::CloneToUninit for aya::util::KernelVersion where T: core::clone::Clone
  10137. pub unsafe fn aya::util::KernelVersion::clone_to_uninit(&self, dest: *mut u8)
  10138. impl<T> core::convert::From<T> for aya::util::KernelVersion
  10139. pub fn aya::util::KernelVersion::from(t: T) -> T
  10140. pub fn aya::util::kernel_symbols() -> core::result::Result<alloc::collections::btree::map::BTreeMap<u64, alloc::string::String>, std::io::error::Error>
  10141. pub fn aya::util::nr_cpus() -> core::result::Result<usize, (&'static str, std::io::error::Error)>
  10142. pub fn aya::util::online_cpus() -> core::result::Result<alloc::vec::Vec<u32>, (&'static str, std::io::error::Error)>
  10143. pub fn aya::util::syscall_prefix() -> core::result::Result<&'static str, std::io::error::Error>
  10144. pub macro aya::include_bytes_aligned!
  10145. pub enum aya::EbpfError
  10146. pub aya::EbpfError::BtfError(aya_obj::btf::btf::BtfError)
  10147. pub aya::EbpfError::BtfRelocationError(aya_obj::btf::relocation::BtfRelocationError)
  10148. pub aya::EbpfError::FileError
  10149. pub aya::EbpfError::FileError::error: std::io::error::Error
  10150. pub aya::EbpfError::FileError::path: std::path::PathBuf
  10151. pub aya::EbpfError::MapError(aya::maps::MapError)
  10152. pub aya::EbpfError::NoBTF
  10153. pub aya::EbpfError::ParseError(aya_obj::obj::ParseError)
  10154. pub aya::EbpfError::ProgramError(aya::programs::ProgramError)
  10155. pub aya::EbpfError::RelocationError(aya_obj::relocation::EbpfRelocationError)
  10156. pub aya::EbpfError::UnexpectedPinningType
  10157. pub aya::EbpfError::UnexpectedPinningType::name: u32
  10158. impl core::convert::From<aya::maps::MapError> for aya::EbpfError
  10159. pub fn aya::EbpfError::from(source: aya::maps::MapError) -> Self
  10160. impl core::convert::From<aya::programs::ProgramError> for aya::EbpfError
  10161. pub fn aya::EbpfError::from(source: aya::programs::ProgramError) -> Self
  10162. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::EbpfError
  10163. pub fn aya::EbpfError::from(source: aya_obj::btf::btf::BtfError) -> Self
  10164. impl core::convert::From<aya_obj::btf::relocation::BtfRelocationError> for aya::EbpfError
  10165. pub fn aya::EbpfError::from(source: aya_obj::btf::relocation::BtfRelocationError) -> Self
  10166. impl core::convert::From<aya_obj::obj::ParseError> for aya::EbpfError
  10167. pub fn aya::EbpfError::from(source: aya_obj::obj::ParseError) -> Self
  10168. impl core::convert::From<aya_obj::relocation::EbpfRelocationError> for aya::EbpfError
  10169. pub fn aya::EbpfError::from(source: aya_obj::relocation::EbpfRelocationError) -> Self
  10170. impl core::error::Error for aya::EbpfError
  10171. pub fn aya::EbpfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  10172. impl core::fmt::Debug for aya::EbpfError
  10173. pub fn aya::EbpfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10174. impl core::fmt::Display for aya::EbpfError
  10175. pub fn aya::EbpfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10176. impl core::marker::Freeze for aya::EbpfError
  10177. impl core::marker::Send for aya::EbpfError
  10178. impl core::marker::Sync for aya::EbpfError
  10179. impl core::marker::Unpin for aya::EbpfError
  10180. impl !core::panic::unwind_safe::RefUnwindSafe for aya::EbpfError
  10181. impl !core::panic::unwind_safe::UnwindSafe for aya::EbpfError
  10182. impl<T, U> core::convert::Into<U> for aya::EbpfError where U: core::convert::From<T>
  10183. pub fn aya::EbpfError::into(self) -> U
  10184. impl<T, U> core::convert::TryFrom<U> for aya::EbpfError where U: core::convert::Into<T>
  10185. pub type aya::EbpfError::Error = core::convert::Infallible
  10186. pub fn aya::EbpfError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10187. impl<T, U> core::convert::TryInto<U> for aya::EbpfError where U: core::convert::TryFrom<T>
  10188. pub type aya::EbpfError::Error = <U as core::convert::TryFrom<T>>::Error
  10189. pub fn aya::EbpfError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10190. impl<T> alloc::string::ToString for aya::EbpfError where T: core::fmt::Display + ?core::marker::Sized
  10191. pub fn aya::EbpfError::to_string(&self) -> alloc::string::String
  10192. impl<T> core::any::Any for aya::EbpfError where T: 'static + ?core::marker::Sized
  10193. pub fn aya::EbpfError::type_id(&self) -> core::any::TypeId
  10194. impl<T> core::borrow::Borrow<T> for aya::EbpfError where T: ?core::marker::Sized
  10195. pub fn aya::EbpfError::borrow(&self) -> &T
  10196. impl<T> core::borrow::BorrowMut<T> for aya::EbpfError where T: ?core::marker::Sized
  10197. pub fn aya::EbpfError::borrow_mut(&mut self) -> &mut T
  10198. impl<T> core::convert::From<T> for aya::EbpfError
  10199. pub fn aya::EbpfError::from(t: T) -> T
  10200. pub struct aya::Ebpf
  10201. impl aya::Ebpf
  10202. pub fn aya::Ebpf::load(data: &[u8]) -> core::result::Result<Self, aya::EbpfError>
  10203. pub fn aya::Ebpf::load_file<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::EbpfError>
  10204. pub fn aya::Ebpf::map(&self, name: &str) -> core::option::Option<&aya::maps::Map>
  10205. pub fn aya::Ebpf::map_mut(&mut self, name: &str) -> core::option::Option<&mut aya::maps::Map>
  10206. pub fn aya::Ebpf::maps(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::maps::Map)>
  10207. pub fn aya::Ebpf::maps_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::maps::Map)>
  10208. pub fn aya::Ebpf::program(&self, name: &str) -> core::option::Option<&aya::programs::Program>
  10209. pub fn aya::Ebpf::program_mut(&mut self, name: &str) -> core::option::Option<&mut aya::programs::Program>
  10210. pub fn aya::Ebpf::programs(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::programs::Program)>
  10211. pub fn aya::Ebpf::programs_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::programs::Program)>
  10212. pub fn aya::Ebpf::take_map(&mut self, name: &str) -> core::option::Option<aya::maps::Map>
  10213. impl core::fmt::Debug for aya::Ebpf
  10214. pub fn aya::Ebpf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10215. impl core::marker::Freeze for aya::Ebpf
  10216. impl core::marker::Send for aya::Ebpf
  10217. impl core::marker::Sync for aya::Ebpf
  10218. impl core::marker::Unpin for aya::Ebpf
  10219. impl core::panic::unwind_safe::RefUnwindSafe for aya::Ebpf
  10220. impl core::panic::unwind_safe::UnwindSafe for aya::Ebpf
  10221. impl<T, U> core::convert::Into<U> for aya::Ebpf where U: core::convert::From<T>
  10222. pub fn aya::Ebpf::into(self) -> U
  10223. impl<T, U> core::convert::TryFrom<U> for aya::Ebpf where U: core::convert::Into<T>
  10224. pub type aya::Ebpf::Error = core::convert::Infallible
  10225. pub fn aya::Ebpf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10226. impl<T, U> core::convert::TryInto<U> for aya::Ebpf where U: core::convert::TryFrom<T>
  10227. pub type aya::Ebpf::Error = <U as core::convert::TryFrom<T>>::Error
  10228. pub fn aya::Ebpf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10229. impl<T> core::any::Any for aya::Ebpf where T: 'static + ?core::marker::Sized
  10230. pub fn aya::Ebpf::type_id(&self) -> core::any::TypeId
  10231. impl<T> core::borrow::Borrow<T> for aya::Ebpf where T: ?core::marker::Sized
  10232. pub fn aya::Ebpf::borrow(&self) -> &T
  10233. impl<T> core::borrow::BorrowMut<T> for aya::Ebpf where T: ?core::marker::Sized
  10234. pub fn aya::Ebpf::borrow_mut(&mut self) -> &mut T
  10235. impl<T> core::convert::From<T> for aya::Ebpf
  10236. pub fn aya::Ebpf::from(t: T) -> T
  10237. pub struct aya::EbpfLoader<'a>
  10238. impl<'a> aya::EbpfLoader<'a>
  10239. pub fn aya::EbpfLoader<'a>::allow_unsupported_maps(&mut self) -> &mut Self
  10240. pub fn aya::EbpfLoader<'a>::btf(&mut self, btf: core::option::Option<&'a aya_obj::btf::btf::Btf>) -> &mut Self
  10241. pub fn aya::EbpfLoader<'a>::extension(&mut self, name: &'a str) -> &mut Self
  10242. pub fn aya::EbpfLoader<'a>::load(&mut self, data: &[u8]) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10243. pub fn aya::EbpfLoader<'a>::load_file<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<aya::Ebpf, aya::EbpfError>
  10244. pub fn aya::EbpfLoader<'a>::map_pin_path<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> &mut Self
  10245. pub fn aya::EbpfLoader<'a>::new() -> Self
  10246. pub fn aya::EbpfLoader<'a>::set_global<T: core::convert::Into<aya::GlobalData<'a>>>(&mut self, name: &'a str, value: T, must_exist: bool) -> &mut Self
  10247. pub fn aya::EbpfLoader<'a>::set_max_entries(&mut self, name: &'a str, size: u32) -> &mut Self
  10248. pub fn aya::EbpfLoader<'a>::verifier_log_level(&mut self, level: aya::VerifierLogLevel) -> &mut Self
  10249. impl core::default::Default for aya::EbpfLoader<'_>
  10250. pub fn aya::EbpfLoader<'_>::default() -> Self
  10251. impl<'a> core::fmt::Debug for aya::EbpfLoader<'a>
  10252. pub fn aya::EbpfLoader<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10253. impl<'a> core::marker::Freeze for aya::EbpfLoader<'a>
  10254. impl<'a> core::marker::Send for aya::EbpfLoader<'a>
  10255. impl<'a> core::marker::Sync for aya::EbpfLoader<'a>
  10256. impl<'a> core::marker::Unpin for aya::EbpfLoader<'a>
  10257. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::EbpfLoader<'a>
  10258. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::EbpfLoader<'a>
  10259. impl<T, U> core::convert::Into<U> for aya::EbpfLoader<'a> where U: core::convert::From<T>
  10260. pub fn aya::EbpfLoader<'a>::into(self) -> U
  10261. impl<T, U> core::convert::TryFrom<U> for aya::EbpfLoader<'a> where U: core::convert::Into<T>
  10262. pub type aya::EbpfLoader<'a>::Error = core::convert::Infallible
  10263. pub fn aya::EbpfLoader<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10264. impl<T, U> core::convert::TryInto<U> for aya::EbpfLoader<'a> where U: core::convert::TryFrom<T>
  10265. pub type aya::EbpfLoader<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10266. pub fn aya::EbpfLoader<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10267. impl<T> core::any::Any for aya::EbpfLoader<'a> where T: 'static + ?core::marker::Sized
  10268. pub fn aya::EbpfLoader<'a>::type_id(&self) -> core::any::TypeId
  10269. impl<T> core::borrow::Borrow<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10270. pub fn aya::EbpfLoader<'a>::borrow(&self) -> &T
  10271. impl<T> core::borrow::BorrowMut<T> for aya::EbpfLoader<'a> where T: ?core::marker::Sized
  10272. pub fn aya::EbpfLoader<'a>::borrow_mut(&mut self) -> &mut T
  10273. impl<T> core::convert::From<T> for aya::EbpfLoader<'a>
  10274. pub fn aya::EbpfLoader<'a>::from(t: T) -> T
  10275. pub struct aya::GlobalData<'a>
  10276. impl<'a, T: aya::Pod> core::convert::From<&'a T> for aya::GlobalData<'a>
  10277. pub fn aya::GlobalData<'a>::from(v: &'a T) -> Self
  10278. impl<'a, T: aya::Pod> core::convert::From<&'a [T]> for aya::GlobalData<'a>
  10279. pub fn aya::GlobalData<'a>::from(s: &'a [T]) -> Self
  10280. impl<'a> core::marker::Freeze for aya::GlobalData<'a>
  10281. impl<'a> core::marker::Send for aya::GlobalData<'a>
  10282. impl<'a> core::marker::Sync for aya::GlobalData<'a>
  10283. impl<'a> core::marker::Unpin for aya::GlobalData<'a>
  10284. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::GlobalData<'a>
  10285. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::GlobalData<'a>
  10286. impl<T, U> core::convert::Into<U> for aya::GlobalData<'a> where U: core::convert::From<T>
  10287. pub fn aya::GlobalData<'a>::into(self) -> U
  10288. impl<T, U> core::convert::TryFrom<U> for aya::GlobalData<'a> where U: core::convert::Into<T>
  10289. pub type aya::GlobalData<'a>::Error = core::convert::Infallible
  10290. pub fn aya::GlobalData<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10291. impl<T, U> core::convert::TryInto<U> for aya::GlobalData<'a> where U: core::convert::TryFrom<T>
  10292. pub type aya::GlobalData<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  10293. pub fn aya::GlobalData<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10294. impl<T> core::any::Any for aya::GlobalData<'a> where T: 'static + ?core::marker::Sized
  10295. pub fn aya::GlobalData<'a>::type_id(&self) -> core::any::TypeId
  10296. impl<T> core::borrow::Borrow<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10297. pub fn aya::GlobalData<'a>::borrow(&self) -> &T
  10298. impl<T> core::borrow::BorrowMut<T> for aya::GlobalData<'a> where T: ?core::marker::Sized
  10299. pub fn aya::GlobalData<'a>::borrow_mut(&mut self) -> &mut T
  10300. impl<T> core::convert::From<T> for aya::GlobalData<'a>
  10301. pub fn aya::GlobalData<'a>::from(t: T) -> T
  10302. pub struct aya::VerifierLogLevel(_)
  10303. impl aya::VerifierLogLevel
  10304. pub const aya::VerifierLogLevel::DEBUG: Self
  10305. pub const aya::VerifierLogLevel::DISABLE: Self
  10306. pub const aya::VerifierLogLevel::STATS: Self
  10307. pub const aya::VerifierLogLevel::VERBOSE: Self
  10308. impl aya::VerifierLogLevel
  10309. pub const fn aya::VerifierLogLevel::all() -> Self
  10310. pub const fn aya::VerifierLogLevel::bits(&self) -> u32
  10311. pub const fn aya::VerifierLogLevel::complement(self) -> Self
  10312. pub const fn aya::VerifierLogLevel::contains(&self, other: Self) -> bool
  10313. pub const fn aya::VerifierLogLevel::difference(self, other: Self) -> Self
  10314. pub const fn aya::VerifierLogLevel::empty() -> Self
  10315. pub const fn aya::VerifierLogLevel::from_bits(bits: u32) -> core::option::Option<Self>
  10316. pub const fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> Self
  10317. pub const fn aya::VerifierLogLevel::from_bits_truncate(bits: u32) -> Self
  10318. pub fn aya::VerifierLogLevel::from_name(name: &str) -> core::option::Option<Self>
  10319. pub fn aya::VerifierLogLevel::insert(&mut self, other: Self)
  10320. pub const fn aya::VerifierLogLevel::intersection(self, other: Self) -> Self
  10321. pub const fn aya::VerifierLogLevel::intersects(&self, other: Self) -> bool
  10322. pub const fn aya::VerifierLogLevel::is_all(&self) -> bool
  10323. pub const fn aya::VerifierLogLevel::is_empty(&self) -> bool
  10324. pub fn aya::VerifierLogLevel::remove(&mut self, other: Self)
  10325. pub fn aya::VerifierLogLevel::set(&mut self, other: Self, value: bool)
  10326. pub const fn aya::VerifierLogLevel::symmetric_difference(self, other: Self) -> Self
  10327. pub fn aya::VerifierLogLevel::toggle(&mut self, other: Self)
  10328. pub const fn aya::VerifierLogLevel::union(self, other: Self) -> Self
  10329. impl aya::VerifierLogLevel
  10330. pub const fn aya::VerifierLogLevel::iter(&self) -> bitflags::iter::Iter<aya::VerifierLogLevel>
  10331. pub const fn aya::VerifierLogLevel::iter_names(&self) -> bitflags::iter::IterNames<aya::VerifierLogLevel>
  10332. impl bitflags::traits::Flags for aya::VerifierLogLevel
  10333. pub type aya::VerifierLogLevel::Bits = u32
  10334. pub const aya::VerifierLogLevel::FLAGS: &'static [bitflags::traits::Flag<aya::VerifierLogLevel>]
  10335. pub fn aya::VerifierLogLevel::bits(&self) -> u32
  10336. pub fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> aya::VerifierLogLevel
  10337. impl bitflags::traits::PublicFlags for aya::VerifierLogLevel
  10338. pub type aya::VerifierLogLevel::Internal = InternalBitFlags
  10339. pub type aya::VerifierLogLevel::Primitive = u32
  10340. impl core::clone::Clone for aya::VerifierLogLevel
  10341. pub fn aya::VerifierLogLevel::clone(&self) -> aya::VerifierLogLevel
  10342. impl core::default::Default for aya::VerifierLogLevel
  10343. pub fn aya::VerifierLogLevel::default() -> Self
  10344. impl core::fmt::Binary for aya::VerifierLogLevel
  10345. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10346. impl core::fmt::Debug for aya::VerifierLogLevel
  10347. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10348. impl core::fmt::LowerHex for aya::VerifierLogLevel
  10349. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10350. impl core::fmt::Octal for aya::VerifierLogLevel
  10351. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10352. impl core::fmt::UpperHex for aya::VerifierLogLevel
  10353. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  10354. impl core::iter::traits::collect::Extend<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10355. pub fn aya::VerifierLogLevel::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  10356. impl core::iter::traits::collect::FromIterator<aya::VerifierLogLevel> for aya::VerifierLogLevel
  10357. pub fn aya::VerifierLogLevel::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  10358. impl core::iter::traits::collect::IntoIterator for aya::VerifierLogLevel
  10359. pub type aya::VerifierLogLevel::IntoIter = bitflags::iter::Iter<aya::VerifierLogLevel>
  10360. pub type aya::VerifierLogLevel::Item = aya::VerifierLogLevel
  10361. pub fn aya::VerifierLogLevel::into_iter(self) -> Self::IntoIter
  10362. impl core::marker::Copy for aya::VerifierLogLevel
  10363. impl core::ops::arith::Sub for aya::VerifierLogLevel
  10364. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10365. pub fn aya::VerifierLogLevel::sub(self, other: Self) -> Self
  10366. impl core::ops::arith::SubAssign for aya::VerifierLogLevel
  10367. pub fn aya::VerifierLogLevel::sub_assign(&mut self, other: Self)
  10368. impl core::ops::bit::BitAnd for aya::VerifierLogLevel
  10369. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10370. pub fn aya::VerifierLogLevel::bitand(self, other: Self) -> Self
  10371. impl core::ops::bit::BitAndAssign for aya::VerifierLogLevel
  10372. pub fn aya::VerifierLogLevel::bitand_assign(&mut self, other: Self)
  10373. impl core::ops::bit::BitOr for aya::VerifierLogLevel
  10374. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10375. pub fn aya::VerifierLogLevel::bitor(self, other: aya::VerifierLogLevel) -> Self
  10376. impl core::ops::bit::BitOrAssign for aya::VerifierLogLevel
  10377. pub fn aya::VerifierLogLevel::bitor_assign(&mut self, other: Self)
  10378. impl core::ops::bit::BitXor for aya::VerifierLogLevel
  10379. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10380. pub fn aya::VerifierLogLevel::bitxor(self, other: Self) -> Self
  10381. impl core::ops::bit::BitXorAssign for aya::VerifierLogLevel
  10382. pub fn aya::VerifierLogLevel::bitxor_assign(&mut self, other: Self)
  10383. impl core::ops::bit::Not for aya::VerifierLogLevel
  10384. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  10385. pub fn aya::VerifierLogLevel::not(self) -> Self
  10386. impl core::marker::Freeze for aya::VerifierLogLevel
  10387. impl core::marker::Send for aya::VerifierLogLevel
  10388. impl core::marker::Sync for aya::VerifierLogLevel
  10389. impl core::marker::Unpin for aya::VerifierLogLevel
  10390. impl core::panic::unwind_safe::RefUnwindSafe for aya::VerifierLogLevel
  10391. impl core::panic::unwind_safe::UnwindSafe for aya::VerifierLogLevel
  10392. impl<T, U> core::convert::Into<U> for aya::VerifierLogLevel where U: core::convert::From<T>
  10393. pub fn aya::VerifierLogLevel::into(self) -> U
  10394. impl<T, U> core::convert::TryFrom<U> for aya::VerifierLogLevel where U: core::convert::Into<T>
  10395. pub type aya::VerifierLogLevel::Error = core::convert::Infallible
  10396. pub fn aya::VerifierLogLevel::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  10397. impl<T, U> core::convert::TryInto<U> for aya::VerifierLogLevel where U: core::convert::TryFrom<T>
  10398. pub type aya::VerifierLogLevel::Error = <U as core::convert::TryFrom<T>>::Error
  10399. pub fn aya::VerifierLogLevel::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  10400. impl<T> alloc::borrow::ToOwned for aya::VerifierLogLevel where T: core::clone::Clone
  10401. pub type aya::VerifierLogLevel::Owned = T
  10402. pub fn aya::VerifierLogLevel::clone_into(&self, target: &mut T)
  10403. pub fn aya::VerifierLogLevel::to_owned(&self) -> T
  10404. impl<T> core::any::Any for aya::VerifierLogLevel where T: 'static + ?core::marker::Sized
  10405. pub fn aya::VerifierLogLevel::type_id(&self) -> core::any::TypeId
  10406. impl<T> core::borrow::Borrow<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10407. pub fn aya::VerifierLogLevel::borrow(&self) -> &T
  10408. impl<T> core::borrow::BorrowMut<T> for aya::VerifierLogLevel where T: ?core::marker::Sized
  10409. pub fn aya::VerifierLogLevel::borrow_mut(&mut self) -> &mut T
  10410. impl<T> core::clone::CloneToUninit for aya::VerifierLogLevel where T: core::clone::Clone
  10411. pub unsafe fn aya::VerifierLogLevel::clone_to_uninit(&self, dest: *mut u8)
  10412. impl<T> core::convert::From<T> for aya::VerifierLogLevel
  10413. pub fn aya::VerifierLogLevel::from(t: T) -> T
  10414. pub unsafe trait aya::Pod: core::marker::Copy + 'static
  10415. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_cpumap_val
  10416. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_devmap_val
  10417. impl aya::Pod for i128
  10418. impl aya::Pod for i16
  10419. impl aya::Pod for i32
  10420. impl aya::Pod for i64
  10421. impl aya::Pod for i8
  10422. impl aya::Pod for u128
  10423. impl aya::Pod for u16
  10424. impl aya::Pod for u32
  10425. impl aya::Pod for u64
  10426. impl aya::Pod for u8
  10427. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  10428. impl<T: aya::Pod, const N: usize> aya::Pod for [T; N]
  10429. pub fn aya::features() -> &'static aya_obj::obj::Features
  10430. pub type aya::Bpf = aya::Ebpf
  10431. pub type aya::BpfError = aya::EbpfError
  10432. pub type aya::BpfLoader<'a> = aya::EbpfLoader<'a>